示例#1
0
 /** {@inheritDoc} */
 public int getResolutionHeight() {
   return JSONUtils.getSafeInt(data, FolioProperty.RESOLUTION_HEIGHT.getName());
 }
示例#2
0
 /** {@inheritDoc} */
 public DPSValue getProperty(String propertyName) {
   return new StringValueImpl(JSONUtils.getSafeString(data, propertyName));
 }
示例#3
0
 /** {@inheritDoc} */
 public int getResolutionWidth() {
   return JSONUtils.getSafeInt(data, FolioProperty.RESOLUTION_WIDTH.getName());
 }
示例#4
0
 /** {@inheritDoc} */
 public String getDescription() {
   return JSONUtils.getSafeString(data, FolioProperty.DESCRIPTION.getName());
 }
示例#5
0
 /** {@inheritDoc} */
 public String getNumber() {
   return JSONUtils.getSafeString(data, FolioProperty.NUMBER.getName());
 }
示例#6
0
 /** {@inheritDoc} */
 public String getTitle() {
   return JSONUtils.getSafeString(data, FolioProperty.TITLE.getName());
 }
示例#7
0
 /** {@inheritDoc} */
 public String getID() {
   return JSONUtils.getSafeString(data, FolioProperty.ID.getName());
 }