摘要: package com.geoway.pad.favourite.bean;/*** @author likehua* @date 20120621* */public enum FavouriteGeometeyType { POINT(1), LINE(2), POLYGON(2); int type; private FavouriteGeometeyType(int type){ this.type=type; } public int getOriginTypeValue(){ return this.type; } public static FavouriteGeometey.. 阅读全文
posted @ 2012-06-21 17:59 李克华 阅读(496) 评论(0) 推荐(0)
摘要: 接口:Writerablepackage com.geoway.pad.common;import java.io.DataInput;import java.io.DataOutput;import java.io.IOException;public interface Writerable { //write public void write(DataOutput data) throws IOException; //read public void read(DataInput di) throws IOException;}接口实现... 阅读全文
posted @ 2012-06-21 17:52 李克华 阅读(10162) 评论(0) 推荐(0)