Properties constructor

Properties(
  1. String name
)

Create a new properties instance by naming the source file using name.

Implementation

Properties(String name) {
  this._sourceFile = name;

  _initFromFile();
}