Subversion Repository Public Repository

litesoft

Diff Revisions 787 vs 828 for /trunk/Java/KeyHole/src/org/litesoft/aokeyhole/objects/AttributeMetaData.java

Diff revisions: vs.
  @@ -82,6 +82,7 @@
82 82 }
83 83 }
84 84
85 + @SuppressWarnings("UnusedDeclaration")
85 86 public Object getPropertyValue( String pName )
86 87 {
87 88 Property property = mPropertyManager.getProperty( pName );
  @@ -93,11 +94,13 @@
93 94 return mPropertyManager;
94 95 }
95 96
97 + @SuppressWarnings("UnusedDeclaration")
96 98 public Property[] getProperties()
97 99 {
98 100 return mPropertyManager.getProperties();
99 101 }
100 102
103 + @SuppressWarnings("UnusedDeclaration")
101 104 public void unpersistProperty( String pName, String pValueAsString )
102 105 {
103 106 mPropertyManager.unpersistProperty( pName, pValueAsString );
  @@ -106,6 +109,7 @@
106 109 /**
107 110 * @return null or Error
108 111 */
112 + @SuppressWarnings("UnusedDeclaration")
109 113 public String setPropertyValue( String pName, Object pValue )
110 114 {
111 115 return mPropertyManager.updatePropertyValue( pName, pValue );