Exemplo n.º 1
0
  public List<EventData> getData() {
    List<EventData> res = null;

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

    return res;
  }
Exemplo n.º 2
0
  public AttributeName getSource() {
    AttributeName res = null;

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

    return res;
  }
Exemplo n.º 3
0
  public Properties getProperties() {
    Properties res = null;

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

    return res;
  }
Exemplo n.º 4
0
  public AttributeNameCollection getAttributeNames() {
    AttributeNameCollection res = null;

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

    return res;
  }
Exemplo n.º 5
0
  public AttributeName getDescription() {
    AttributeName res = null;

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

    return res;
  }
Exemplo n.º 6
0
 public void dispose() {
   if (resource != null) {
     resource.dispose();
     resource = null;
   }
 }
Exemplo n.º 7
0
 public void copy(EventDataCollection c) {
   if (resource != null) {
     resource.copy(c);
   }
 }