This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.vmware.g11n; | |
/** | |
* Used to deploy a virtual machine of ova by ovftool. | |
* | |
* Created by [email protected] on 5/8/15 | |
*/ | |
import java.io.BufferedReader; | |
import java.io.IOException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Circle implements Figure { | |
private Type type; | |
private int radius; | |
public Circle(){ | |
type = Type.CIRCLE; | |
} | |
public Type getType() { | |
return type; |