annotate src/de/mpiwg/itgroup/eSciDoc/echoObjects/ECHOCollection.java @ 2:fab8e78184fa

minor
author dwinter
date Mon, 10 Jan 2011 12:42:27 +0100
parents c6929e63b0b8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
c6929e63b0b8 first import
dwinter
parents:
diff changeset
1 package de.mpiwg.itgroup.eSciDoc.echoObjects;
c6929e63b0b8 first import
dwinter
parents:
diff changeset
2
c6929e63b0b8 first import
dwinter
parents:
diff changeset
3 import java.io.IOException;
c6929e63b0b8 first import
dwinter
parents:
diff changeset
4 import java.util.Properties;
c6929e63b0b8 first import
dwinter
parents:
diff changeset
5
c6929e63b0b8 first import
dwinter
parents:
diff changeset
6 public class ECHOCollection extends ECHOObject {
c6929e63b0b8 first import
dwinter
parents:
diff changeset
7
c6929e63b0b8 first import
dwinter
parents:
diff changeset
8
c6929e63b0b8 first import
dwinter
parents:
diff changeset
9
c6929e63b0b8 first import
dwinter
parents:
diff changeset
10 public ECHOCollection(String name, String echoUrl) throws IOException{
c6929e63b0b8 first import
dwinter
parents:
diff changeset
11 super();
c6929e63b0b8 first import
dwinter
parents:
diff changeset
12 CMM ="/cmm/content-model/escidoc:11004";
c6929e63b0b8 first import
dwinter
parents:
diff changeset
13
c6929e63b0b8 first import
dwinter
parents:
diff changeset
14 this.name = name;
c6929e63b0b8 first import
dwinter
parents:
diff changeset
15 this.echoUrl = echoUrl;
c6929e63b0b8 first import
dwinter
parents:
diff changeset
16
c6929e63b0b8 first import
dwinter
parents:
diff changeset
17
c6929e63b0b8 first import
dwinter
parents:
diff changeset
18
c6929e63b0b8 first import
dwinter
parents:
diff changeset
19 }
c6929e63b0b8 first import
dwinter
parents:
diff changeset
20
c6929e63b0b8 first import
dwinter
parents:
diff changeset
21 }