Showing posts with label java. Show all posts
Showing posts with label java. Show all posts

Saturday, September 29, 2012

interface exapmle in java

* program to impliment interface
 * @author vikas
 * @version 1.00 2012/9/28
 */


interface shape{
    public String bclass="shape";
    public void draw();
}