Package | Description |
---|---|
com.unitesk.requality.core |
The main core package for using in other packages.
|
Modifier and Type | Method and Description |
---|---|
boolean |
TreeLogic.canBeChildOfExc(TreeNode what,
TreeNode parent) |
boolean |
ITreeLogic.canBeChildOfExc(TreeNode what,
TreeNode parent)
Method to check if it possible to 'what' to be child of 'parent' TreeNode Throws exceptions
|
boolean |
TreeLogic.canBeChildOfExc(TreeNode what,
TreeNode parent,
boolean checkid) |
boolean |
ITreeLogic.canBeChildOfExc(TreeNode what,
TreeNode parent,
boolean checkid) |
boolean |
TreeLogic.canBeCopiedToExc(TreeNode what,
TreeNode newParent,
boolean changeId) |
boolean |
ITreeLogic.canBeCopiedToExc(TreeNode what,
TreeNode newParent,
boolean changeId)
Check if it is possible to create copy of 'what' TreeNode in 'parent' TreeNode.
|
boolean |
TreeLogic.canBeCreatedInExc(java.lang.String whatType,
java.lang.String newId,
TreeNode parent) |
boolean |
ITreeLogic.canBeCreatedInExc(java.lang.String whatType,
java.lang.String newId,
TreeNode parent)
Check if it possible to create node with type 'whatType' and id 'newId' to node 'parent' Throws
exceptions
|
boolean |
TreeLogic.canBeParentOfExc(TreeNode what,
TreeNode child) |
boolean |
ITreeLogic.canBeParentOfExc(TreeNode what,
TreeNode child)
Method to check if it possible to 'what' to be parent of 'child' TreeNode
|
boolean |
TreeLogic.isChildIdValidExc(TreeNode parent,
java.lang.String id) |
boolean |
ITreeLogic.isChildIdValidExc(TreeNode parent,
java.lang.String id)
Method to check if it possible to add node with id 'id' to node 'parent' Throws exceptions
|
boolean |
TreeLogic.isChildIdValidExc(TreeNode parent,
TreeNode node,
java.lang.String id) |
boolean |
ITreeLogic.isChildIdValidExc(TreeNode parent,
TreeNode node,
java.lang.String id)
Method to check if it possible to add node with id 'id' to node 'parent' Throws exceptions
|
static boolean |
TreeLogic.isIdValidExc(java.lang.String newId) |
boolean |
TreeLogic.isIdValidExc(TreeNode node,
java.lang.String newId) |
boolean |
ITreeLogic.isIdValidExc(TreeNode node,
java.lang.String newId)
Method to check if it possible to change id of 'node' to 'newId' Throws exceptions
|