1 25 26 29 package net.killingar.forum.internal; 30 31 import java.sql.Timestamp ; 32 import java.util.List ; 33 34 public class Skin extends NamedItemImpl implements OwnerIDItem 35 { 36 public long ownerID = -1, groupID = -1; 37 public String question; 38 public Timestamp time; 39 public List data; 40 41 public Skin(long _ID, String _name, long _ownerID, long _groupID, Timestamp _time) 42 { 43 super(_ID, _name); 44 ownerID = _ownerID; 45 groupID = _groupID; 46 time = _time; 47 } 48 49 public Skin(String _name, long _groupID) 50 { 51 super(-1, _name); 52 groupID = _groupID; 53 } 54 55 public Timestamp getTime() {return time;} 56 57 public long getOwnerID() { return ownerID; } 58 public long getGroupID() { return groupID; } 59 } 60 | Popular Tags |