com.zusmart.base.activity.Attachable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zusmart-base Show documentation
Show all versions of zusmart-base Show documentation
提供基础的工具类及方法类,Logging,Scanner,Buffer,NetWork,Future,Thread
package com.zusmart.base.activity;
import java.util.Map;
public interface Attachable {
public V getProperty(K key);
public void setProperty(K key, V value);
public void delProperty(K key);
public boolean hasProperty(K key);
public Map getProperties();
public void clearProperties();
}