Revision: 43129
          http://brlcad.svn.sourceforge.net/brlcad/?rev=43129&view=rev
Author:   davidloman
Date:     2011-02-08 19:07:49 +0000 (Tue, 08 Feb 2011)

Log Message:
-----------
Create dedicated statics class.  Move statics into it.

Modified Paths:
--------------
    
geomcore/trunk/src/interfaces/java/src/org/brlcad/geometryservice/GSClient.java

Added Paths:
-----------
    
geomcore/trunk/src/interfaces/java/src/org/brlcad/geometryservice/GSStatics.java

Modified: 
geomcore/trunk/src/interfaces/java/src/org/brlcad/geometryservice/GSClient.java
===================================================================
--- 
geomcore/trunk/src/interfaces/java/src/org/brlcad/geometryservice/GSClient.java 
    2011-02-08 18:57:43 UTC (rev 43128)
+++ 
geomcore/trunk/src/interfaces/java/src/org/brlcad/geometryservice/GSClient.java 
    2011-02-08 19:07:49 UTC (rev 43129)
@@ -25,9 +25,6 @@
 
 public class GSClient {
 
-    private static final int Magic1 = 0x000041FE;
-    private static final int Magic2 = 0x00005309;
-
     private static final short Failure = 0x0050;
     private static final short Success = 0x0051;
     private static final short RemHostNameSET = 0x0100;

Added: 
geomcore/trunk/src/interfaces/java/src/org/brlcad/geometryservice/GSStatics.java
===================================================================
--- 
geomcore/trunk/src/interfaces/java/src/org/brlcad/geometryservice/GSStatics.java
                            (rev 0)
+++ 
geomcore/trunk/src/interfaces/java/src/org/brlcad/geometryservice/GSStatics.java
    2011-02-08 19:07:49 UTC (rev 43129)
@@ -0,0 +1,31 @@
+/*                  G S S T A T I C S . J A V A
+ * BRL-CAD
+ *
+ * Copyright (c) 2011 United States Government as represented by
+ * the U.S. Army Research Laboratory.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this file; see the file named COPYING for more
+ * information.
+ */
+/** @file GSStatics.java
+ *
+ */
+
+package org.brlcad.geometryservice;
+
+public final class GSStatics {
+
+       public final static short magic01 = 0x41FE;
+       public final static short magic02 = 0x5309;
+       
+}


Property changes on: 
geomcore/trunk/src/interfaces/java/src/org/brlcad/geometryservice/GSStatics.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:eol-style
   + native


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to