Groupe
Inheritance: java.lang.Object, com.aspose.threed.A3DObject
public class Group extends A3DObject
Un Group représente les relations logiques de Node.
Constructeurs
| Constructeur | Description |
|---|---|
| Group(String name) | Construisez une nouvelle instance de Group |
| Group() | Construisez une nouvelle instance de Group |
Méthodes
| Méthode | Description |
|---|---|
| equals(Object arg0) | |
| findProperty(String propertyName) | Trouve la propriété. |
| getClass() | |
| getGroups() | Sous-groupes |
| getName() | Obtient le nom. |
| getNodes() | Les nœuds de ce groupe |
| getParent() | Groupe parent du groupe actuel |
| getProperties() | Obtient la collection de toutes les propriétés. |
| getProperty(String property) | Obtenir la valeur de la propriété spécifiée |
| hashCode() | |
| notify() | |
| notifyAll() | |
| removeProperty(Property property) | Supprime une propriété dynamique. |
| removeProperty(String property) | Supprime la propriété spécifiée identifiée par son nom |
| setName(String value) | Définit le nom. |
| setProperty(String property, Object value) | Définit la valeur de la propriété spécifiée |
| toString() | Obtient la représentation sous forme de chaîne de Group |
| wait() | |
| wait(long arg0) | |
| wait(long arg0, int arg1) |
Group(String name)
public Group(String name)
Construisez une nouvelle instance de Group
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| nom | java.lang.String | Nom du groupe |
Group()
public Group()
Construisez une nouvelle instance de Group
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| arg0 | java.lang.Object |
Returns: boolean
findProperty(String propertyName)
public Property findProperty(String propertyName)
Trouve la propriété. Elle peut être une propriété dynamique (Créée par CreateDynamicProperty/SetProperty) ou une propriété native (Identifiée par son nom)
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| propertyName | java.lang.String | Nom de la propriété. |
Returns: Property - The property.
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getGroups()
public List<Group> getGroups()
Sous-groupes
Returns: java.util.List<com.aspose.threed.Group> - Sous-groupes
getName()
public String getName()
Obtient le nom.
Returns: java.lang.String - le nom.
getNodes()
public List<Node> getNodes()
Les nœuds de ce groupe
Returns: java.util.List<com.aspose.threed.Node> - Les nœuds de ce groupe
getParent()
public Group getParent()
Groupe parent du groupe actuel
Returns: Group - Parent group of current group
getProperties()
public PropertyCollection getProperties()
Obtient la collection de toutes les propriétés.
Returns: PropertyCollection - the collection of all properties.
getProperty(String property)
public Object getProperty(String property)
Obtenir la valeur de la propriété spécifiée
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| propriété | java.lang.String | Nom de la propriété |
Returns: java.lang.Object - La valeur de la propriété trouvée
hashCode()
public native int hashCode()
Returns: int
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
removeProperty(Property property)
public boolean removeProperty(Property property)
Supprime une propriété dynamique.
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| property | Property | Quelle propriété supprimer |
Returns: boolean - vrai si la propriété est supprimée avec succès
removeProperty(String property)
public boolean removeProperty(String property)
Supprime la propriété spécifiée identifiée par son nom
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| propriété | java.lang.String | Quelle propriété supprimer |
Returns: boolean - vrai si la propriété est supprimée avec succès
setName(String value)
public void setName(String value)
Définit le nom.
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| valeur | java.lang.String | Nouvelle valeur |
setProperty(String property, Object value)
public void setProperty(String property, Object value)
Définit la valeur de la propriété spécifiée
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| propriété | java.lang.String | Nom de la propriété |
| valeur | java.lang.Object | La valeur de la propriété |
toString()
public String toString()
Obtient la représentation sous forme de chaîne de Group
Returns: java.lang.String - La représentation sous forme de chaîne de l’instance actuelle
wait()
public final void wait()
wait(long arg0)
public final void wait(long arg0)
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| arg0 | long | |
| arg1 | int |