Package com.aspose.tasks
Class Property
- java.lang.Object
-
- com.aspose.tasks.Property
-
- Direct Known Subclasses:
BuiltInProjectProperty
,CustomProjectProperty
public abstract class Property extends Object
Represents a base class of a property.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Gets a name of the property.Object
getValue()
Gets a value of the property.void
setValue(Object value)
Sets a value of the property.String
toString()
Returns the property value as string.
-
-
-
Method Detail
-
getName
public final String getName()
Gets a name of the property.
- Returns:
- a name of the property.
-
getValue
public final Object getValue()
Gets a value of the property.
- Returns:
- a value of the property.
-
setValue
public final void setValue(Object value)
Sets a value of the property.
- Parameters:
value
- a value of the property.
-
-