Example #1
0
 /**
  * Get the width of the object
  *
  * @param scale
  * @param factory
  * @return
  */
 public int getWidth(CodeScale scale, CodeMapFactory factory) {
   return object.getWidth(scale, factory);
 }
Example #2
0
 /**
  * Returns true if this map object contains the class searched for.
  *
  * @param className the name of the class.
  * @return whether the class is contained in this object.
  */
 public boolean containsClass(String className) {
   return object.containsClass(className);
 }
Example #3
0
 /**
  * Get the height of the object
  *
  * @param scale
  * @param factory
  * @return
  */
 @Override
 public int getHeight(CodeScale scale, CodeMapFactory factory) {
   return object.getHeight(scale, factory);
 }