Class BuiltInProjectPropertyCollection
- java.lang.Object
-
- com.aspose.tasks.PropertyCollection<T>
-
- com.aspose.tasks.PropertyKeyedCollection<BuiltInProjectProperty>
-
- com.aspose.tasks.BuiltInProjectPropertyCollection
-
- All Implemented Interfaces:
Iterable<BuiltInProjectProperty>,Collection<BuiltInProjectProperty>
public final class BuiltInProjectPropertyCollection extends PropertyKeyedCollection<BuiltInProjectProperty>
Represents a collection of built-in project properties.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthor()Gets the author of a project.StringgetCategory()Gets the category of a project.StringgetComments()Gets the comments of a project.StringgetCompany()Gets the company of a project.StringgetHyperlinkBase()Gets the hyperlink base of a project.StringgetKeywords()Gets the keywords of a project.StringgetManager()Gets the manager of a project.StringgetSubject()Gets the subject of a project.StringgetTitle()Gets the title of a project.booleanisReadOnly()Gets a value indicating whether this collection is read-only; otherwise, false.voidsetAuthor(String value)Sets the author of a project.voidsetCategory(String value)Sets the category of a project.voidsetComments(String value)Sets the comments of a project.voidsetCompany(String value)Sets the company of a project.voidsetHyperlinkBase(String value)Sets the hyperlink base of a project.voidsetKeywords(String value)Sets the keywords of a project.voidsetManager(String value)Sets the manager of a project.voidsetSubject(String value)Sets the subject of a project.voidsetTitle(String value)Sets the title of a project.-
Methods inherited from class com.aspose.tasks.PropertyKeyedCollection
add, addAll, clear, contains, contains, containsAll, get_Item, getNames, isEmpty, remove, removeAll, retainAll, size, toArray, toArray
-
Methods inherited from class com.aspose.tasks.PropertyCollection
iterator
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Collection
equals, hashCode, iterator, parallelStream, removeIf, spliterator, stream, toArray
-
-
-
-
Method Detail
-
getAuthor
public final String getAuthor()
Gets the author of a project.
- Returns:
- the author of a project.
-
setAuthor
public final void setAuthor(String value)
Sets the author of a project.
- Parameters:
value- the author of a project.
-
getCategory
public final String getCategory()
Gets the category of a project.
- Returns:
- the category of a project.
-
setCategory
public final void setCategory(String value)
Sets the category of a project.
- Parameters:
value- the category of a project.
-
getComments
public final String getComments()
Gets the comments of a project.
- Returns:
- the comments of a project.
-
setComments
public final void setComments(String value)
Sets the comments of a project.
- Parameters:
value- the comments of a project.
-
getCompany
public final String getCompany()
Gets the company of a project.
- Returns:
- the company of a project.
-
setCompany
public final void setCompany(String value)
Sets the company of a project.
- Parameters:
value- the company of a project.
-
getHyperlinkBase
public final String getHyperlinkBase()
Gets the hyperlink base of a project.
- Returns:
- the hyperlink base of a project.
-
setHyperlinkBase
public final void setHyperlinkBase(String value)
Sets the hyperlink base of a project.
- Parameters:
value- the hyperlink base of a project.
-
getKeywords
public final String getKeywords()
Gets the keywords of a project.
- Returns:
- the keywords of a project.
-
setKeywords
public final void setKeywords(String value)
Sets the keywords of a project.
- Parameters:
value- the keywords of a project.
-
getManager
public final String getManager()
Gets the manager of a project.
- Returns:
- the manager of a project.
-
setManager
public final void setManager(String value)
Sets the manager of a project.
- Parameters:
value- the manager of a project.
-
getSubject
public final String getSubject()
Gets the subject of a project.
- Returns:
- the subject of a project.
-
setSubject
public final void setSubject(String value)
Sets the subject of a project.
- Parameters:
value- the subject of a project.
-
getTitle
public final String getTitle()
Gets the title of a project.
- Returns:
- the title of a project.
-
setTitle
public final void setTitle(String value)
Sets the title of a project.
- Parameters:
value- the title of a project.
-
isReadOnly
public boolean isReadOnly()
Gets a value indicating whether this collection is read-only; otherwise, false.
- Specified by:
isReadOnlyin classPropertyKeyedCollection<BuiltInProjectProperty>- Returns:
- a value indicating whether this collection is read-only; otherwise, false.
-
-