forked from Unidata/tds
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,111 changed files
with
5,118 additions
and
21,929 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* | ||
* Copyright 2012, UCAR/Unidata. | ||
* See the LICENSE file for more information. | ||
*/ | ||
|
||
package dap4.servlet; | ||
|
||
import dap4.core.dmr.*; | ||
|
||
public class CDMDMR { | ||
////////////////////////////////////////////////// | ||
|
||
public static class CDMAttribute extends DapAttribute { | ||
public CDMAttribute(String name, DapType basetype) { | ||
super(name, basetype); | ||
} | ||
} | ||
|
||
public static class CDMAttributeSet extends DapAttributeSet { | ||
public CDMAttributeSet(String name) { | ||
super(name); | ||
} | ||
} | ||
|
||
public static class CDMDimension extends DapDimension { | ||
public CDMDimension(String name, long size) { | ||
super(name, size); | ||
} | ||
} | ||
|
||
public static class CDMMap extends DapMap { | ||
public CDMMap(String target) { | ||
super(target); | ||
} | ||
} | ||
|
||
public abstract static class CDMVariable extends DapVariable { | ||
public CDMVariable(String name, DapType t) { | ||
super(name, t); | ||
} | ||
} | ||
|
||
public static class CDMGroup extends DapGroup { | ||
public CDMGroup(String name) { | ||
super(name); | ||
} | ||
} | ||
|
||
public static class CDMDataset extends DapDataset { | ||
public CDMDataset(String name) { | ||
super(name); | ||
} | ||
} | ||
|
||
public static class CDMEnumeration extends DapEnumeration { | ||
public CDMEnumeration(String name, DapType basetype) { | ||
super(name, basetype); | ||
} | ||
} | ||
|
||
public static class CDMEnumConst extends DapEnumConst { | ||
public CDMEnumConst(String name, long value) { | ||
super(name, value); | ||
} | ||
} | ||
|
||
public static class CDMStructure extends DapStructure { | ||
public CDMStructure(String name) { | ||
super(name); | ||
} | ||
} | ||
|
||
public static class CDMSequence extends DapSequence { | ||
public CDMSequence(String name) { | ||
super(name); | ||
} | ||
} | ||
|
||
public static class CDMOtherXML extends DapOtherXML { | ||
public CDMOtherXML(String name) { | ||
super(name); | ||
} | ||
} | ||
} |
Oops, something went wrong.