1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package classes;
- public class HolonTransformer extends CpsObject {
- /* Ratio of the transformer */
- float transformRatio;
- /**
- * Constructor Set type of object (Transformer), its transform ratio and the
- * default name ("Transformer");
- */
- public HolonTransformer(String ObjName) {
- super(ObjName);
- }
- public HolonTransformer(String ObjName, String obj) {
- super(ObjName);
- super.setName(obj);
- }
- public HolonTransformer(CpsObject obj) {
- super(obj);
- this.setTransformRatio(((HolonTransformer) obj).getTransformRatio());
- }
- /**
- * Set transform ratio
- *
- * @param ratio
- * desired ratio
- */
- public void setTransformRatio(float ratio) {
- this.transformRatio = ratio;
- }
- /**
- * Output the actual ratio of the transformer
- *
- * @return actual ratio of the transformer
- */
- public float getTransformRatio() {
- return this.transformRatio;
- }
- }
|