You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
229 B

8 years ago
  1. package com.highcharts.export.pool;
  2. public interface ObjectFactory<T>{
  3. public T create();
  4. public boolean validate(T object);
  5. public void destroy(T object);
  6. public void activate(T object);
  7. public void passivate(T Object);
  8. }