diff options
Diffstat (limited to 'java/src/ant/SliceMeta.java')
-rw-r--r-- | java/src/ant/SliceMeta.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/java/src/ant/SliceMeta.java b/java/src/ant/SliceMeta.java new file mode 100644 index 00000000000..878dad75218 --- /dev/null +++ b/java/src/ant/SliceMeta.java @@ -0,0 +1,25 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +public class SliceMeta +{ + public void + setValue(String value) + { + _value = value; + } + + public String + getValue() + { + return _value; + } + + private String _value; +} |