Package com.infoteria.gui.property
Interface PropertyHolder
- All Known Implementing Classes:
com.infoteria.gui.property.inspector.AbstractPropertyEditable,BaseObject,Component,Function,Properties,SimpleObject,StreamDefinition
public interface PropertyHolder
プロパティを保持するインターフェース
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddProperty(Property prop) プロパティを追加します。getName()名前を返します。保持しているPropertyのIteratorを返します。getProperty(String name) 名前を指定してPropertyを取得します。intプロパティ数を返します。voidremoveProperty(Property prop) プロパティを削除します。
-
Method Details
-
getName
String getName()名前を返します。 -
getProperty
名前を指定してPropertyを取得します。 -
getProperties
保持しているPropertyのIteratorを返します。 -
getPropertyCount
int getPropertyCount()プロパティ数を返します。 -
addProperty
プロパティを追加します。 -
removeProperty
プロパティを削除します。
-