Revision 10690

View differences:

branches/v10/libraries/libDwg/src/com/iver/cit/jdwglib/dwg/IDwgBlock.java
1
/*
2
 * Created on 12-feb-2007
3
 *
4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 *  Generalitat Valenciana
25
 *   Conselleria d'Infraestructures i Transport
26
 *   Av. Blasco Ib??ez, 50
27
 *   46010 VALENCIA
28
 *   SPAIN
29
 *
30
 *      +34 963862235
31
 *   gvsig@gva.es
32
 *      www.gvsig.gva.es
33
 *
34
 *    or
35
 *
36
 *   IVER T.I. S.A
37
 *   Salamanca 50
38
 *   46005 Valencia
39
 *   Spain
40
 *
41
 *   +34 963163400
42
 *   dac@iver.es
43
 */
44
/* CVS MESSAGES:
45
*
46
* $Id$
47
* $Log$
48
* Revision 1.1  2007-03-02 20:31:22  azabala
49
* *** empty log message ***
50
*
51
*
52
*/
53
package com.iver.cit.jdwglib.dwg;
54

  
55
/**
56
 * A block is a composite entity in autocad
57
 * (it is a drawing entity, and it contains drawing entities)
58
 * 
59
 * Currently we have found DwgBlock and DwgBlockHeaders as
60
 * start of a block. This interface is a common ancestor to both
61
 * 
62
 * @author azabala
63
 */
64

  
65
public interface IDwgBlock {
66
	public void add(DwgObject object);
67
	public DwgObject get(int i); 
68
}
69

  
0 70

  
branches/v10/extensions/extArcims/about/extarcims-about.html
1
<html>
2
	<head>
3
	<style type="text/css">
4
	BODY { background-image: url(logo.png); background-repeat: no-repeat; background-position: 100% 0% }
5
	</style>
6
	</head>
7
	<body>	
8
		<h2>Cliente ArcIMS para gvSIG</h2>	
9
		<p>Director del proyecto:</p>
10
		<ul>
11
			<li>Miguel Montesinos Lajara</li>
12
		</ul>
13
		<p>Equipo de desarrollo:</p>
14
		<ul>
15
			<li>Javier Carrasco Marimon,</li>
16
			<li>Jorge Gaspar Sanz Salinas,</li>
17
			<li>Juan Lucas Dom&iacute;nguez Rubio</li>
18
		</ul>
19
		<p>Build Number de la extensi&oacute;n: 78</p>
20
		<center>
21
			<p><b><a href="http://www.prodevelop.es" title="Prodevelop">http://www.prodevelop.es</a></b></p>
22
		</center>
23
	</body>
24
</html>
0 25

  
branches/v10/install/instalador-gvSIG-mac/build-bundle.xml
1
<project name="bundle-gvSIG" default="init" basedir=".">
2

  
3
	<taskdef name="jarbundler" classname="net.sourceforge.jarbundler.JarBundler" />
4
	
5
	<target name="init">
6
		<jarbundler 
7
			dir="."
8
			name="gvSIG ${FULLVERSION} build ${build.number}"
9
			mainclass="com.iver.andami.Launcher"
10
			arguments="gvSIG gvSIG/extensiones"
11
			bundleid="com.iver.cit.gvsig"
12
			developmentregion = "Spanish"
13
			icon="logo gvsig.icns"  
14
			shortname="gvSIG" 
15
			stubfile="JavaApplicationStub" 
16
			version="${FULLVERSION}"
17
			build="${build.number}"
18
			infostring="gvSIG ${FULLVERSION}"
19
			vmoptions ="-Xmx500M"
20
			jvmversion ="1.4+"
21
			extraclasspath = "andami.jar,lib/log4j-1.2.8.jar,lib/beans.jar,lib/gvsig-i18n.jar,lib/iver-utiles.jar,lib/castor-0.9.5.3-xml.jar,lib/crimson.jar,lib/xerces_2_5_0.jar,lib/javaws.jar,lib/xml-apis.jar,lib/JWizardComponent.jar,lib/looks-2.0.2.jar"
22
			workingdirectory  = "$JAVAROOT" 
23
			showplist="true"
24
			>
25
			
26
			<javaproperty name="apple.laf.useScreenMenuBar" value="true"/>
27
			<javaproperty name="java.library.path" value="$JAVAROOT/../NativeLibs"/>
28
			
29
			<!-- jarfileset no incluye nada, pero evita quejas de jarbundler -->
30
			<jarfileset dir="." includes="nothing!" excludes="*"/>
31
			<javafileset dir="../../_fwAndami/" excludes="bin/ src/"/>
32
		</jarbundler>
33

  
34
	</target>
35

  
36
</project>
0 37

  

Also available in: Unified diff