rename OHLCValue -> OHLCEvent
This commit is contained in:
@ -231,7 +231,7 @@ public class OHLCPlugInView extends ViewSupport {
|
||||
private void postData() {
|
||||
if (open == null) return;
|
||||
|
||||
OHLCValue value = new OHLCValue(windowStartTime, open, high, low, close);
|
||||
OHLCEvent value = new OHLCEvent(windowStartTime, open, high, low, close);
|
||||
|
||||
// send
|
||||
EventAdapterService service = agentContext.getStatementContext().getEventAdapterService();
|
||||
@ -261,8 +261,8 @@ public class OHLCPlugInView extends ViewSupport {
|
||||
|
||||
protected static EventType getEventType(EventAdapterService service)
|
||||
{
|
||||
return service.addBeanType(OHLCValue.class.getName(),
|
||||
OHLCValue.class,
|
||||
return service.addBeanType(OHLCEvent.class.getName(),
|
||||
OHLCEvent.class,
|
||||
false, false, false);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user