Returns the "Info" property string, or null if it is not found. @see #getProp @see #setProp
()
| 1742 | * @see #setProp |
| 1743 | */ |
| 1744 | public String getInfoProperty() { |
| 1745 | String info = null; |
| 1746 | Object obj = getProperty("Info"); |
| 1747 | if (obj!=null && (obj instanceof String)) { |
| 1748 | info = (String)obj; |
| 1749 | if (info.length()==0) |
| 1750 | info = null; |
| 1751 | } |
| 1752 | return info; |
| 1753 | } |
| 1754 | |
| 1755 | /** Returns the property associated with 'key', or null if it is not found. |
| 1756 | * @see #getProp |
nothing calls this directly
no test coverage detected