KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > editor2d > IFillable


1 package com.nightlabs.editor2d;
2
3 public interface IFillable
4 {
5     public static final String JavaDoc PROP_FILL = "fill";
6     boolean isFill();
7     void setFill(boolean fill);
8 }
9
Popular Tags