Пример #1
0
  public List<EventData> getData() {
    List<EventData> res = null;

    {
      if (resource != null) {
        res = resource.getData();
      }
    }

    return res;
  }
Пример #2
0
  public AttributeName getSource() {
    AttributeName res = null;

    {
      if (resource != null) {
        res = resource.getSource();
      }
    }

    return res;
  }
Пример #3
0
  public Properties getProperties() {
    Properties res = null;

    {
      if (resource != null) {
        res = resource.getProperties();
      }
    }

    return res;
  }
Пример #4
0
  public AttributeNameCollection getAttributeNames() {
    AttributeNameCollection res = null;

    {
      if (resource != null) {
        res = resource.getAttributeNames();
      }
    }

    return res;
  }
Пример #5
0
  public AttributeName getDescription() {
    AttributeName res = null;

    {
      if (resource != null) {
        res = resource.getDescription();
      }
    }

    return res;
  }
Пример #6
0
 public void dispose() {
   if (resource != null) {
     resource.dispose();
     resource = null;
   }
 }
Пример #7
0
 public void copy(EventDataCollection c) {
   if (resource != null) {
     resource.copy(c);
   }
 }