Interface IQCResourceFolder
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IObjectLockingSupport
public interface IQCResourceFolder extends IBaseField
Represents a QC resource folder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
description()
The description of the resource folder.void
description(java.lang.String pVal)
The description of the resource folder.java.lang.String
name()
The resource folder name.void
name(java.lang.String pVal)
The resource folder name.int
parentId()
The ID of the resource's parent folder.void
parentId(int pVal)
The ID of the resource's parent folder.com4j.Com4jObject
qcResourceFactory()
The QCResourceFactory object for direct child resources.com4j.Com4jObject
qcResourceFolderFactory()
The QCResourceFolderFactory for direct child resource folders.-
Methods inherited from interface com4j.Com4jObject
advise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
-
Methods inherited from interface step.repository.alm.v16.otaclient.IBaseField
autoPost, autoPost, field, field, id, modified, post, refresh, undo, virtual
-
Methods inherited from interface step.repository.alm.v16.otaclient.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
-
-
-
Method Detail
-
name
java.lang.String name()
The resource folder name.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
name
void name(java.lang.String pVal)
The resource folder name.
Setter method for the COM property "Name"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
parentId
int parentId()
The ID of the resource's parent folder.
Getter method for the COM property "ParentId"
- Returns:
- Returns a value of type int
-
parentId
void parentId(int pVal)
The ID of the resource's parent folder.
Setter method for the COM property "ParentId"
- Parameters:
pVal
- Mandatory int parameter.
-
description
java.lang.String description()
The description of the resource folder.
Getter method for the COM property "Description"
- Returns:
- Returns a value of type java.lang.String
-
description
void description(java.lang.String pVal)
The description of the resource folder.
Setter method for the COM property "Description"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
qcResourceFolderFactory
com4j.Com4jObject qcResourceFolderFactory()
The QCResourceFolderFactory for direct child resource folders.
Getter method for the COM property "QCResourceFolderFactory"
- Returns:
- Returns a value of type com4j.Com4jObject
-
qcResourceFactory
com4j.Com4jObject qcResourceFactory()
The QCResourceFactory object for direct child resources.
Getter method for the COM property "QCResourceFactory"
- Returns:
- Returns a value of type com4j.Com4jObject
-
-