From: Xuan B. <med...@us...> - 2008-01-23 15:59:03
|
Update of /cvsroot/tm4j/tm4j/src/org/tm4j/topicmap/tmdm In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv15383/src/org/tm4j/topicmap/tmdm Added Files: PSI.java Log Message: Create some centralized PSI String objects such that we have an opportunity to not duplicate those String objects. --- NEW FILE: PSI.java --- package org.tm4j.topicmap.tmdm; /** @author <a href="mailto:xua...@pu...">Xuân Baldauf</a> */ public static class PSI { public static String type = "http://psi.topicmaps.org/iso13250/model/type"; public static String instance = "http://psi.topicmaps.org/iso13250/model/instance"; public static String type_instance = "http://psi.topicmaps.org/iso13250/model/type-instance"; public static String topic_name = "http://psi.topicmaps.org/iso13250/model/topic-name"; } /* Copyright (c) 2007-2008 Xuân Baldauf. This software is licensed, under the terms of * Apache 2 License * GPL v2 License * GPL v3 License * LGPL v2.1 License * MPL v1.1 License as well as each later version of these licenses. This means: (1) If you are using this software, you can choose any subset of the licenses mentioned, and you can choose any version of each of these licenses (starting with the respective version indicated). (Note that, however, choosing the empty set of licenses means that you do not have any right granted by any license at all.) (2) If you are committing contributions to this software (i.e. this software as part of the official TM4J sourcecode), then you agree to each of these licenses for your contribution (such that each user of this software has still at least the same set of rights and licenses when using this software together with you contribution compared to when using this software without your contribution). */ // :tabSize=2:indentSize=2: |