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 String
getAuthor()
Gets the author of a project.String
getCategory()
Gets the category of a project.String
getComments()
Gets the comments of a project.String
getCompany()
Gets the company of a project.String
getHyperlinkBase()
Gets the hyperlink base of a project.String
getKeywords()
Gets the keywords of a project.String
getManager()
Gets the manager of a project.String
getSubject()
Gets the subject of a project.String
getTitle()
Gets the title of a project.boolean
isReadOnly()
Gets a value indicating whether this collection is read-only; otherwise, false.void
setAuthor(String value)
Sets the author of a project.void
setCategory(String value)
Sets the category of a project.void
setComments(String value)
Sets the comments of a project.void
setCompany(String value)
Sets the company of a project.void
setHyperlinkBase(String value)
Sets the hyperlink base of a project.void
setKeywords(String value)
Sets the keywords of a project.void
setManager(String value)
Sets the manager of a project.void
setSubject(String value)
Sets the subject of a project.void
setTitle(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:
isReadOnly
in classPropertyKeyedCollection<BuiltInProjectProperty>
- Returns:
- a value indicating whether this collection is read-only; otherwise, false.
-
-