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 StringgetName()Gets a name of the property.ObjectgetValue()Gets a value of the property.voidsetValue(Object value)Sets a value of the property.StringtoString()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.
-
-