ITag.java :  » Mail-Clients » columba-1.4 » org » columba » core » tagging » api » Java Open Source

Java Open Source » Mail Clients » columba 1.4 
columba 1.4 » org » columba » core » tagging » api » ITag.java
package org.columba.core.tagging.api;

import java.awt.Color;

public interface ITag {
  
  String getId();
  
  String getName();
  void setName(String name);
  Color getColor();
  void setColor(Color color);
  
  String getDescription();
  void setDescription(String description);
  
//  String getProperty(String name);
//  void setProperty(String name, String value);
//  
//  Hashtable getProperties();
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.