All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alogic.event.EventProperties Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.alogic.event;

import com.anysoft.util.Properties;

/**
 * 将Event包裹成一个Properties
 * 
 * @author yyduan
 * @version 1.6.11.3 [20171219 duanyy] 
* - 修正event为空的问题
*/ public class EventProperties extends Properties { /** * 被包裹的event */ protected Event event = null; public EventProperties(Event e,Properties parent){ super("default",parent); this.event = e; } @Override protected void _SetValue(String _name, String _value) { if (event != null){ event.setProperty(_name, _value, true); } } @Override protected String _GetValue(String _name) { return event != null ? event.getProperty(_name, null) : null; } @Override public void Clear() { //无法清除event的属性 } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy