Revision 2897

View differences:

tags/Root_jdwglib_03_gvSIG/libraries/libDwg/.classpath
1
<?xml version="1.0" encoding="UTF-8"?>
2
<classpath>
3
	<classpathentry kind="src" path="src"/>
4
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5
	<classpathentry kind="output" path="bin"/>
6
</classpath>
0 7

  
tags/Root_jdwglib_03_gvSIG/libraries/libDwg/.project
1
<?xml version="1.0" encoding="UTF-8"?>
2
<projectDescription>
3
	<name>jdwglib</name>
4
	<comment></comment>
5
	<projects>
6
	</projects>
7
	<buildSpec>
8
		<buildCommand>
9
			<name>org.eclipse.jdt.core.javabuilder</name>
10
			<arguments>
11
			</arguments>
12
		</buildCommand>
13
	</buildSpec>
14
	<natures>
15
		<nature>org.eclipse.jdt.core.javanature</nature>
16
	</natures>
17
</projectDescription>
0 18

  
tags/Root_jdwglib_03_gvSIG/libraries/libDwg/doc/technical_specs.txt
1
jdwglib Technical Specifications
2

  
3
Overview
4

  
5
The Java DWG Library (jdwglib) is a Java libray designed for reading, handling and
6
writing drawing files in the Autodesk DWG format. This document is the design
7
specification for the classes, methods and algorithms implemented in the Java DWG
8
Library.
9

  
10
jdwglib has two different parts, first for DWG file accesing, and second for DWG file
11
handling. The part for accesing DWG files support the reading of DWG files and in
12
future versions we hope that writing of DWG files will be supported too. The part for
13
handling DWG files is designed for managing DWG complex objects like polylines or
14
blocks with the objective that the spatial position and the attributes of DWG objects
15
will be definitive and no one operation is required for obtaining the same results
16
that Autocad.
17

  
18
The detailed documentation of the class hierarchy and methods will be presented in the
19
form of JavaDoc for the source code.
20

  
21

  
22
Other resources
23

  
24
- Pythoncad DWG Library by Art Haas (www.pythoncad.org). The part of jdwglib that reads
25
  DWG files is a port of this library with an object oriented model added.
26

  
27
- The AutoCAD R13/R14/R2000 DWG File Specification by the OpenDWG Alliance. This is the
28
  public specification of the DWG format obtained using reverse engineering methods by
29
  the OpenDWG Alliance (www.opendwg.org).
30

  
31

  
32
Design goals
33

  
34
The design of jdwglib is intended to fulfil the following goals:
35

  
36
- jdwglib must return the definitive set of DWG objects. Geometric and
37
  non geometric attributes of these objects will be enough for its correct and complete
38
  representation.
39

  
40
- The jdwglib interface must be easy to use, even by someone that hasn't advanced
41
  CAD knowledge.
42

  
43
- jdwglib will be fast enough to be used in a production environment.
44

  
45
- The algorithms and code used in jdwglib will be clear and well-structured, to
46
  facilitate understanding by other developers.
47

  
48

  
49
Object model
50

  
51
The package javacad.util contains some general classes that are useful for handling
52
DWG objects and other objects in a GIS environment. Their use is described in the
53
JavaDoc documentation.
54

  
55
The package jdwglib contains the classes for reading and managing DWG files and its
56
objects. Their use is described in the JavaDoc documentation.
57

  
58

  
0 59

  
tags/Root_jdwglib_03_gvSIG/libraries/libDwg/doc/javadoc/overview-frame.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_08) on Wed Sep 07 16:36:34 CEST 2005 -->
6
<TITLE>
7
Overview
8
</TITLE>
9

  
10
<META NAME="keywords" CONTENT="Overview, Java DWG Library v0.3 API Specification">
11

  
12
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13

  
14

  
15
</HEAD>
16

  
17
<BODY BGCOLOR="white">
18

  
19
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
20
<TR>
21
<TD NOWRAP><FONT size="+1" CLASS="FrameTitleFont">
22
<B></B></FONT></TD>
23
</TR>
24
</TABLE>
25

  
26
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
27
<TR>
28
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="allclasses-frame.html" target="packageFrame">All Classes</A></FONT>
29
<P>
30
<FONT size="+1" CLASS="FrameHeadingFont">
31
Packages</FONT>
32
<BR>
33
<FONT CLASS="FrameItemFont"><A HREF="com/iver/cit/gvsig/fmap/drivers/dgn/package-frame.html" target="packageFrame">com.iver.cit.gvsig.fmap.drivers.dgn</A></FONT>
34
<BR>
35
<FONT CLASS="FrameItemFont"><A HREF="com/iver/cit/javacad/util/package-frame.html" target="packageFrame">com.iver.cit.javacad.util</A></FONT>
36
<BR>
37
<FONT CLASS="FrameItemFont"><A HREF="com/iver/cit/jdwglib/dwg/package-frame.html" target="packageFrame">com.iver.cit.jdwglib.dwg</A></FONT>
38
<BR>
39
<FONT CLASS="FrameItemFont"><A HREF="com/iver/cit/jdwglib/dwg/objects/package-frame.html" target="packageFrame">com.iver.cit.jdwglib.dwg.objects</A></FONT>
40
<BR>
41
<FONT CLASS="FrameItemFont"><A HREF="com/iver/cit/jdwglib/test/package-frame.html" target="packageFrame">com.iver.cit.jdwglib.test</A></FONT>
42
<BR>
43
<FONT CLASS="FrameItemFont"><A HREF="freenet/support/package-frame.html" target="packageFrame">freenet.support</A></FONT>
44
<BR>
45
</TD>
46
</TR>
47
</TABLE>
48

  
49
<P>
50
&nbsp;
51
</BODY>
52
</HTML>
0 53

  
tags/Root_jdwglib_03_gvSIG/libraries/libDwg/doc/javadoc/overview-summary.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_08) on Wed Sep 07 16:36:34 CEST 2005 -->
6
<TITLE>
7
Overview
8
</TITLE>
9

  
10
<META NAME="keywords" CONTENT="Overview, Java DWG Library v0.3 API Specification">
11

  
12
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
13

  
14
<SCRIPT type="text/javascript">
15
function windowTitle()
16
{
17
    parent.document.title="Overview";
18
}
19
</SCRIPT>
20

  
21
</HEAD>
22

  
23
<BODY BGCOLOR="white" onload="windowTitle();">
24

  
25

  
26
<!-- ========= START OF TOP NAVBAR ======= -->
27
<A NAME="navbar_top"><!-- --></A>
28
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
29
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
30
<TR>
31
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
32
<A NAME="navbar_top_firstrow"><!-- --></A>
33
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
34
  <TR ALIGN="center" VALIGN="top">
35
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Overview</B></FONT>&nbsp;</TD>
36
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
37
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
38
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
39
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
40
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
41
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
42
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
43
  </TR>
44
</TABLE>
45
</TD>
46
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
47
</EM>
48
</TD>
49
</TR>
50

  
51
<TR>
52
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
53
&nbsp;PREV&nbsp;
54
&nbsp;NEXT</FONT></TD>
55
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
56
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
57
&nbsp;<A HREF="overview-summary.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
58
&nbsp;<SCRIPT type="text/javascript">
59
  <!--
60
  if(window==top) {
61
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
62
  }
63
  //-->
64
</SCRIPT>
65
<NOSCRIPT>
66
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
67
</NOSCRIPT>
68

  
69
</FONT></TD>
70
</TR>
71
</TABLE>
72
<A NAME="skip-navbar_top"></A>
73
<!-- ========= END OF TOP NAVBAR ========= -->
74

  
75
<HR>
76
<CENTER>
77
<H1>
78
Java DWG Library v0.3 API Specification
79
</H1>
80
</CENTER>
81

  
82
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
83
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
84
<TD COLSPAN=2><FONT SIZE="+2">
85
<B>Packages</B></FONT></TD>
86
</TR>
87
<TR BGCOLOR="white" CLASS="TableRowColor">
88
<TD WIDTH="20%"><B><A HREF="com/iver/cit/gvsig/fmap/drivers/dgn/package-summary.html">com.iver.cit.gvsig.fmap.drivers.dgn</A></B></TD>
89
<TD>&nbsp;</TD>
90
</TR>
91
<TR BGCOLOR="white" CLASS="TableRowColor">
92
<TD WIDTH="20%"><B><A HREF="com/iver/cit/javacad/util/package-summary.html">com.iver.cit.javacad.util</A></B></TD>
93
<TD>&nbsp;</TD>
94
</TR>
95
<TR BGCOLOR="white" CLASS="TableRowColor">
96
<TD WIDTH="20%"><B><A HREF="com/iver/cit/jdwglib/dwg/package-summary.html">com.iver.cit.jdwglib.dwg</A></B></TD>
97
<TD>&nbsp;</TD>
98
</TR>
99
<TR BGCOLOR="white" CLASS="TableRowColor">
100
<TD WIDTH="20%"><B><A HREF="com/iver/cit/jdwglib/dwg/objects/package-summary.html">com.iver.cit.jdwglib.dwg.objects</A></B></TD>
101
<TD>&nbsp;</TD>
102
</TR>
103
<TR BGCOLOR="white" CLASS="TableRowColor">
104
<TD WIDTH="20%"><B><A HREF="com/iver/cit/jdwglib/test/package-summary.html">com.iver.cit.jdwglib.test</A></B></TD>
105
<TD>&nbsp;</TD>
106
</TR>
107
<TR BGCOLOR="white" CLASS="TableRowColor">
108
<TD WIDTH="20%"><B><A HREF="freenet/support/package-summary.html">freenet.support</A></B></TD>
109
<TD>&nbsp;</TD>
110
</TR>
111
</TABLE>
112

  
113
<P>
114
&nbsp;<HR>
115

  
116

  
117
<!-- ======= START OF BOTTOM NAVBAR ====== -->
118
<A NAME="navbar_bottom"><!-- --></A>
119
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
120
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
121
<TR>
122
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
123
<A NAME="navbar_bottom_firstrow"><!-- --></A>
124
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
125
  <TR ALIGN="center" VALIGN="top">
126
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Overview</B></FONT>&nbsp;</TD>
127
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
128
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
129
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
130
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
131
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
132
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
133
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
134
  </TR>
135
</TABLE>
136
</TD>
137
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
138
</EM>
139
</TD>
140
</TR>
141

  
142
<TR>
143
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
144
&nbsp;PREV&nbsp;
145
&nbsp;NEXT</FONT></TD>
146
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
147
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
148
&nbsp;<A HREF="overview-summary.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
149
&nbsp;<SCRIPT type="text/javascript">
150
  <!--
151
  if(window==top) {
152
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
153
  }
154
  //-->
155
</SCRIPT>
156
<NOSCRIPT>
157
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
158
</NOSCRIPT>
159

  
160
</FONT></TD>
161
</TR>
162
</TABLE>
163
<A NAME="skip-navbar_bottom"></A>
164
<!-- ======== END OF BOTTOM NAVBAR ======= -->
165

  
166
<HR>
167

  
168
</BODY>
169
</HTML>
0 170

  
tags/Root_jdwglib_03_gvSIG/libraries/libDwg/doc/javadoc/overview-tree.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_08) on Wed Sep 07 16:36:34 CEST 2005 -->
6
<TITLE>
7
Class Hierarchy
8
</TITLE>
9

  
10

  
11
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12

  
13
<SCRIPT type="text/javascript">
14
function windowTitle()
15
{
16
    parent.document.title="Class Hierarchy";
17
}
18
</SCRIPT>
19

  
20
</HEAD>
21

  
22
<BODY BGCOLOR="white" onload="windowTitle();">
23

  
24

  
25
<!-- ========= START OF TOP NAVBAR ======= -->
26
<A NAME="navbar_top"><!-- --></A>
27
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
28
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
29
<TR>
30
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
31
<A NAME="navbar_top_firstrow"><!-- --></A>
32
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
33
  <TR ALIGN="center" VALIGN="top">
34
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
35
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
36
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
37
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
38
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD>
39
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
40
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
41
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
42
  </TR>
43
</TABLE>
44
</TD>
45
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
46
</EM>
47
</TD>
48
</TR>
49

  
50
<TR>
51
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
52
&nbsp;PREV&nbsp;
53
&nbsp;NEXT</FONT></TD>
54
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
55
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
56
&nbsp;<A HREF="overview-tree.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
57
&nbsp;<SCRIPT type="text/javascript">
58
  <!--
59
  if(window==top) {
60
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
61
  }
62
  //-->
63
</SCRIPT>
64
<NOSCRIPT>
65
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
66
</NOSCRIPT>
67

  
68
</FONT></TD>
69
</TR>
70
</TABLE>
71
<A NAME="skip-navbar_top"></A>
72
<!-- ========= END OF TOP NAVBAR ========= -->
73

  
74
<HR>
75
<CENTER>
76
<H2>
77
Hierarchy For All Packages</H2>
78
</CENTER>
79
<DL>
80
<DT><B>Package Hierarchies:</B><DD><A HREF="com/iver/cit/gvsig/fmap/drivers/dgn/package-tree.html">com.iver.cit.gvsig.fmap.drivers.dgn</A>, <A HREF="com/iver/cit/javacad/util/package-tree.html">com.iver.cit.javacad.util</A>, <A HREF="com/iver/cit/jdwglib/dwg/package-tree.html">com.iver.cit.jdwglib.dwg</A>, <A HREF="com/iver/cit/jdwglib/dwg/objects/package-tree.html">com.iver.cit.jdwglib.dwg.objects</A>, <A HREF="com/iver/cit/jdwglib/test/package-tree.html">com.iver.cit.jdwglib.test</A>, <A HREF="freenet/support/package-tree.html">freenet.support</A></DL>
81
<HR>
82
<H2>
83
Class Hierarchy
84
</H2>
85
<UL>
86
<LI TYPE="circle">class java.lang.Object<UL>
87
<LI TYPE="circle">class com.iver.cit.javacad.util.<A HREF="com/iver/cit/javacad/util/AcadColor.html" title="class in com.iver.cit.javacad.util"><B>AcadColor</B></A><LI TYPE="circle">class com.iver.cit.javacad.util.<A HREF="com/iver/cit/javacad/util/AcadExtrusionCalculator.html" title="class in com.iver.cit.javacad.util"><B>AcadExtrusionCalculator</B></A><LI TYPE="circle">class com.iver.cit.javacad.util.<A HREF="com/iver/cit/javacad/util/ArcFromBulgeCalculator.html" title="class in com.iver.cit.javacad.util"><B>ArcFromBulgeCalculator</B></A><LI TYPE="circle">class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn"><B>ByteUtils</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.<A HREF="com/iver/cit/jdwglib/dwg/DwgClass.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgClass</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.<A HREF="com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgFile</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.<A HREF="com/iver/cit/jdwglib/dwg/DwgFileReader.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgFileReader</B></A><UL>
88
<LI TYPE="circle">class com.iver.cit.jdwglib.dwg.<A HREF="com/iver/cit/jdwglib/dwg/DwgFileV14Reader.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgFileV14Reader</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.<A HREF="com/iver/cit/jdwglib/dwg/DwgFileV15Reader.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgFileV15Reader</B></A></UL>
89
<LI TYPE="circle">class com.iver.cit.jdwglib.dwg.<A HREF="com/iver/cit/jdwglib/dwg/DwgHeader.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgHeader</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.<A HREF="com/iver/cit/jdwglib/dwg/DwgObject.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgObject</B></A><UL>
90
<LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgArc.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgArc</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgAttdef.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgAttdef</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgAttrib.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgAttrib</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgBlock.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgBlock</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgBlockControl.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgBlockControl</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgBlockHeader.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgBlockHeader</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgCircle.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgCircle</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgEllipse.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgEllipse</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgEndblk.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgEndblk</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgInsert.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgInsert</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgLayer.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgLayer</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgLayerControl.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgLayerControl</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgLine.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgLine</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgLinearDimension.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgLinearDimension</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgLwPolyline.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgLwPolyline</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgMText.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgMText</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgPoint.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgPoint</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgPolyline2D.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgPolyline2D</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgPolyline3D.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgPolyline3D</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgSeqend.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgSeqend</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgSolid.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgSolid</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgSpline.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgSpline</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgText.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgText</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgVertex2D.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgVertex2D</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.objects.<A HREF="com/iver/cit/jdwglib/dwg/objects/DwgVertex3D.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgVertex3D</B></A></UL>
91
<LI TYPE="circle">class com.iver.cit.jdwglib.dwg.<A HREF="com/iver/cit/jdwglib/dwg/DwgObjectOffset.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgObjectOffset</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.<A HREF="com/iver/cit/jdwglib/dwg/DwgSectionOffset.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgSectionOffset</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.dwg.<A HREF="com/iver/cit/jdwglib/dwg/DwgUtil.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgUtil</B></A><LI TYPE="circle">class com.iver.cit.javacad.util.<A HREF="com/iver/cit/javacad/util/GisModelCurveCalculator.html" title="class in com.iver.cit.javacad.util"><B>GisModelCurveCalculator</B></A><LI TYPE="circle">class freenet.support.<A HREF="freenet/support/HexUtil.html" title="class in freenet.support"><B>HexUtil</B></A><LI TYPE="circle">class com.iver.cit.jdwglib.test.<A HREF="com/iver/cit/jdwglib/test/Test.html" title="class in com.iver.cit.jdwglib.test"><B>Test</B></A><LI TYPE="circle">class com.iver.cit.javacad.util.<A HREF="com/iver/cit/javacad/util/TextToUnicodeConverter.html" title="class in com.iver.cit.javacad.util"><B>TextToUnicodeConverter</B></A></UL>
92
</UL>
93
<HR>
94

  
95

  
96
<!-- ======= START OF BOTTOM NAVBAR ====== -->
97
<A NAME="navbar_bottom"><!-- --></A>
98
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
99
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
100
<TR>
101
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
102
<A NAME="navbar_bottom_firstrow"><!-- --></A>
103
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
104
  <TR ALIGN="center" VALIGN="top">
105
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
106
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
107
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
108
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
109
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD>
110
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
111
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
112
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
113
  </TR>
114
</TABLE>
115
</TD>
116
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
117
</EM>
118
</TD>
119
</TR>
120

  
121
<TR>
122
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
123
&nbsp;PREV&nbsp;
124
&nbsp;NEXT</FONT></TD>
125
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
126
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
127
&nbsp;<A HREF="overview-tree.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
128
&nbsp;<SCRIPT type="text/javascript">
129
  <!--
130
  if(window==top) {
131
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
132
  }
133
  //-->
134
</SCRIPT>
135
<NOSCRIPT>
136
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
137
</NOSCRIPT>
138

  
139
</FONT></TD>
140
</TR>
141
</TABLE>
142
<A NAME="skip-navbar_bottom"></A>
143
<!-- ======== END OF BOTTOM NAVBAR ======= -->
144

  
145
<HR>
146

  
147
</BODY>
148
</HTML>
0 149

  
tags/Root_jdwglib_03_gvSIG/libraries/libDwg/doc/javadoc/index-files/index-1.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_08) on Wed Sep 07 16:36:34 CEST 2005 -->
6
<TITLE>
7
A-Index
8
</TITLE>
9

  
10

  
11
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
12

  
13
<SCRIPT type="text/javascript">
14
function windowTitle()
15
{
16
    parent.document.title="A-Index";
17
}
18
</SCRIPT>
19

  
20
</HEAD>
21

  
22
<BODY BGCOLOR="white" onload="windowTitle();">
23

  
24

  
25
<!-- ========= START OF TOP NAVBAR ======= -->
26
<A NAME="navbar_top"><!-- --></A>
27
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
28
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
29
<TR>
30
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
31
<A NAME="navbar_top_firstrow"><!-- --></A>
32
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
33
  <TR ALIGN="center" VALIGN="top">
34
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
35
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
36
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
37
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
38
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
39
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
40
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
41
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
42
  </TR>
43
</TABLE>
44
</TD>
45
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
46
</EM>
47
</TD>
48
</TR>
49

  
50
<TR>
51
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
52
&nbsp;PREV LETTER&nbsp;
53
&nbsp;<A HREF="index-2.html"><B>NEXT LETTER</B></A></FONT></TD>
54
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
55
  <A HREF="../index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
56
&nbsp;<A HREF="index-1.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
57
&nbsp;<SCRIPT type="text/javascript">
58
  <!--
59
  if(window==top) {
60
    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
61
  }
62
  //-->
63
</SCRIPT>
64
<NOSCRIPT>
65
  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
66
</NOSCRIPT>
67

  
68
</FONT></TD>
69
</TR>
70
</TABLE>
71
<A NAME="skip-navbar_top"></A>
72
<!-- ========= END OF TOP NAVBAR ========= -->
73

  
74
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">T</A> <A HREF="index-16.html">Z</A> <HR>
75
<A NAME="_A_"><!-- --></A><H2>
76
<B>A</B></H2>
77
<DL>
78
<DT><A HREF="../com/iver/cit/javacad/util/AcadColor.html" title="class in com.iver.cit.javacad.util"><B>AcadColor</B></A> - class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/AcadColor.html" title="class in com.iver.cit.javacad.util">AcadColor</A>.<DD>This class allows to convert Autocad colors in Java colors<DT><A HREF="../com/iver/cit/javacad/util/AcadColor.html#AcadColor(int, double, double, double, double, double, double)"><B>AcadColor(int, double, double, double, double, double, double)</B></A> - 
79
Constructor for class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/AcadColor.html" title="class in com.iver.cit.javacad.util">AcadColor</A>
80
<DD>This method is used to build the Autocad color table
81
<DT><A HREF="../com/iver/cit/javacad/util/AcadExtrusionCalculator.html" title="class in com.iver.cit.javacad.util"><B>AcadExtrusionCalculator</B></A> - class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/AcadExtrusionCalculator.html" title="class in com.iver.cit.javacad.util">AcadExtrusionCalculator</A>.<DD>This class allows to apply the extrusion transformation of Autocad given by an array
82
 of doubles to a point given by an array of doubles too. <DT><A HREF="../com/iver/cit/javacad/util/AcadExtrusionCalculator.html#AcadExtrusionCalculator()"><B>AcadExtrusionCalculator()</B></A> - 
83
Constructor for class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/AcadExtrusionCalculator.html" title="class in com.iver.cit.javacad.util">AcadExtrusionCalculator</A>
84
<DD>&nbsp;
85
<DT><A HREF="../com/iver/cit/javacad/util/ArcFromBulgeCalculator.html" title="class in com.iver.cit.javacad.util"><B>ArcFromBulgeCalculator</B></A> - class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/ArcFromBulgeCalculator.html" title="class in com.iver.cit.javacad.util">ArcFromBulgeCalculator</A>.<DD>This class calculates an arc given by a start and end points and a bulge<DT><A HREF="../com/iver/cit/javacad/util/ArcFromBulgeCalculator.html#ArcFromBulgeCalculator(java.awt.geom.Point2D, java.awt.geom.Point2D, double)"><B>ArcFromBulgeCalculator(Point2D, Point2D, double)</B></A> - 
86
Constructor for class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/ArcFromBulgeCalculator.html" title="class in com.iver.cit.javacad.util">ArcFromBulgeCalculator</A>
87
<DD>This method calculates an arc given by a start and end points and a bulge
88
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html#addDwgClass(com.iver.cit.jdwglib.dwg.DwgClass)"><B>addDwgClass(DwgClass)</B></A> - 
89
Method in class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg">DwgFile</A>
90
<DD>Add a DWG class to the dwgClasses vector
91
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html#addDwgObject(com.iver.cit.jdwglib.dwg.DwgObject)"><B>addDwgObject(DwgObject)</B></A> - 
92
Method in class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg">DwgFile</A>
93
<DD>Add a DWG object to the dwgObject vector
94
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html#addDwgObjectOffset(int, int)"><B>addDwgObjectOffset(int, int)</B></A> - 
95
Method in class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg">DwgFile</A>
96
<DD>Add a DWG object offset to the dwgObjectOffsets vector
97
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html#addDwgSectionOffset(java.lang.String, int, int)"><B>addDwgSectionOffset(String, int, int)</B></A> - 
98
Method in class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg">DwgFile</A>
99
<DD>Add a DWG section offset to the dwgSectionOffsets vector
100
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlockHeader.html#addObject(com.iver.cit.jdwglib.dwg.DwgObject)"><B>addObject(DwgObject)</B></A> - 
101
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlockHeader.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgBlockHeader</A>
102
<DD>Add a DWG object to the blockObjects vector
103
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html#applyExtrusions()"><B>applyExtrusions()</B></A> - 
104
Method in class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg">DwgFile</A>
105
<DD>Modify the geometry of the objects applying the Extrusion vector where it
106
 is necessary
107
</DL>
108
<HR>
109

  
110

  
111
<!-- ======= START OF BOTTOM NAVBAR ====== -->
112
<A NAME="navbar_bottom"><!-- --></A>
113
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
114
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
115
<TR>
116
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
117
<A NAME="navbar_bottom_firstrow"><!-- --></A>
118
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
119
  <TR ALIGN="center" VALIGN="top">
120
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
121
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
122
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
123
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
124
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
125
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
126
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
127
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
128
  </TR>
129
</TABLE>
130
</TD>
131
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
132
</EM>
133
</TD>
134
</TR>
135

  
136
<TR>
137
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
138
&nbsp;PREV LETTER&nbsp;
139
&nbsp;<A HREF="index-2.html"><B>NEXT LETTER</B></A></FONT></TD>
140
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
141
  <A HREF="../index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
142
&nbsp;<A HREF="index-1.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
143
&nbsp;<SCRIPT type="text/javascript">
144
  <!--
145
  if(window==top) {
146
    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
147
  }
148
  //-->
149
</SCRIPT>
150
<NOSCRIPT>
151
  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
152
</NOSCRIPT>
153

  
154
</FONT></TD>
155
</TR>
156
</TABLE>
157
<A NAME="skip-navbar_bottom"></A>
158
<!-- ======== END OF BOTTOM NAVBAR ======= -->
159

  
160
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">T</A> <A HREF="index-16.html">Z</A> <HR>
161

  
162
</BODY>
163
</HTML>
0 164

  
tags/Root_jdwglib_03_gvSIG/libraries/libDwg/doc/javadoc/index-files/index-2.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_08) on Wed Sep 07 16:36:34 CEST 2005 -->
6
<TITLE>
7
B-Index
8
</TITLE>
9

  
10

  
11
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
12

  
13
<SCRIPT type="text/javascript">
14
function windowTitle()
15
{
16
    parent.document.title="B-Index";
17
}
18
</SCRIPT>
19

  
20
</HEAD>
21

  
22
<BODY BGCOLOR="white" onload="windowTitle();">
23

  
24

  
25
<!-- ========= START OF TOP NAVBAR ======= -->
26
<A NAME="navbar_top"><!-- --></A>
27
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
28
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
29
<TR>
30
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
31
<A NAME="navbar_top_firstrow"><!-- --></A>
32
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
33
  <TR ALIGN="center" VALIGN="top">
34
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
35
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
36
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
37
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
38
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
39
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
40
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
41
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
42
  </TR>
43
</TABLE>
44
</TD>
45
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
46
</EM>
47
</TD>
48
</TR>
49

  
50
<TR>
51
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
52
&nbsp;<A HREF="index-1.html"><B>PREV LETTER</B></A>&nbsp;
53
&nbsp;<A HREF="index-3.html"><B>NEXT LETTER</B></A></FONT></TD>
54
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
55
  <A HREF="../index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
56
&nbsp;<A HREF="index-2.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
57
&nbsp;<SCRIPT type="text/javascript">
58
  <!--
59
  if(window==top) {
60
    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
61
  }
62
  //-->
63
</SCRIPT>
64
<NOSCRIPT>
65
  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
66
</NOSCRIPT>
67

  
68
</FONT></TD>
69
</TR>
70
</TABLE>
71
<A NAME="skip-navbar_top"></A>
72
<!-- ========= END OF TOP NAVBAR ========= -->
73

  
74
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">T</A> <A HREF="index-16.html">Z</A> <HR>
75
<A NAME="_B_"><!-- --></A><H2>
76
<B>B</B></H2>
77
<DL>
78
<DT><A HREF="../com/iver/cit/javacad/util/AcadColor.html#BYBLOCK"><B>BYBLOCK</B></A> - 
79
Static variable in class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/AcadColor.html" title="class in com.iver.cit.javacad.util">AcadColor</A>
80
<DD>When Autocad color is 0, then the color of the object is the color of the
81
 block where it is placed
82
<DT><A HREF="../com/iver/cit/javacad/util/AcadColor.html#BYLAYER"><B>BYLAYER</B></A> - 
83
Static variable in class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/AcadColor.html" title="class in com.iver.cit.javacad.util">AcadColor</A>
84
<DD>When Autocad color is 256, then the color of the object is the color of it
85
 layer
86
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn"><B>ByteUtils</B></A> - class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>.<DD>Clase que engloba m?todos para trabajar con bytes.<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#ByteUtils()"><B>ByteUtils()</B></A> - 
87
Constructor for class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
88
<DD>&nbsp;
89
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#bigIntegerToBytes(java.math.BigInteger, byte[], int[])"><B>bigIntegerToBytes(BigInteger, byte[], int[])</B></A> - 
90
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
91
<DD>Write the bytes representing <code>n</code> into the byte array
92
 <code>data</code>, starting at index <code>offset [0]</code>, and
93
 increment <code>offset [0]</code> by the number of bytes written; if
94
 <code>data == null</code>, increment <code>offset [0]</code> by the
95
 number of bytes that would have been written otherwise.
96
<DT><A HREF="../freenet/support/HexUtil.html#bitsToBytes(java.util.BitSet, int)"><B>bitsToBytes(BitSet, int)</B></A> - 
97
Static method in class freenet.support.<A HREF="../freenet/support/HexUtil.html" title="class in freenet.support">HexUtil</A>
98
<DD>Pack the bits in ba into a byte[].
99
<DT><A HREF="../freenet/support/HexUtil.html#bitsToHexString(java.util.BitSet, int)"><B>bitsToHexString(BitSet, int)</B></A> - 
100
Static method in class freenet.support.<A HREF="../freenet/support/HexUtil.html" title="class in freenet.support">HexUtil</A>
101
<DD>Pack the bits in ba into a byte[] then convert that
102
 to a hex string and return it.
103
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html#blockManagement()"><B>blockManagement()</B></A> - 
104
Method in class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg">DwgFile</A>
105
<DD>Modify the geometry of the objects contained in the blocks of a DWG file and
106
 add these objects to the DWG object list.
107
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#boolToBytes(boolean, byte[], int[])"><B>boolToBytes(boolean, byte[], int[])</B></A> - 
108
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
109
<DD>Write the bytes representing <code>b</code> into the byte array
110
 <code>data</code>, starting at index <code>offset [0]</code>, and
111
 increment <code>offset [0]</code> by the number of bytes written; if
112
 <code>data == null</code>, increment <code>offset [0]</code> by the
113
 number of bytes that would have been written otherwise.
114
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#byteToUnsignedInt(byte)"><B>byteToUnsignedInt(byte)</B></A> - 
115
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
116
<DD>Convert a <code>byte</code> into an unsigned integer.
117
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#bytesToBigInteger(byte[], int[])"><B>bytesToBigInteger(byte[], int[])</B></A> - 
118
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
119
<DD>Return the <code>BigInteger</code> represented by the bytes in
120
 <code>data</code> staring at offset <code>offset[0]</code>.
121
<DT><A HREF="../freenet/support/HexUtil.html#bytesToBits(byte[], java.util.BitSet, int)"><B>bytesToBits(byte[], BitSet, int)</B></A> - 
122
Static method in class freenet.support.<A HREF="../freenet/support/HexUtil.html" title="class in freenet.support">HexUtil</A>
123
<DD>Read bits from a byte array into a bitset
124
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#bytesToBool(byte[], int[])"><B>bytesToBool(byte[], int[])</B></A> - 
125
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
126
<DD>Return the <code>boolean</code> represented by the bytes in
127
 <code>data</code> staring at offset <code>offset[0]</code>.
128
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#bytesToDouble(byte[], int[])"><B>bytesToDouble(byte[], int[])</B></A> - 
129
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
130
<DD>Return the <code>double</code> represented by the bytes in
131
 <code>data</code> staring at offset <code>offset[0]</code>.
132
<DT><A HREF="../freenet/support/HexUtil.html#bytesToHex(byte[], int, int)"><B>bytesToHex(byte[], int, int)</B></A> - 
133
Static method in class freenet.support.<A HREF="../freenet/support/HexUtil.html" title="class in freenet.support">HexUtil</A>
134
<DD>Converts a byte array into a string of upper case hex chars.
135
<DT><A HREF="../freenet/support/HexUtil.html#bytesToHex(byte[])"><B>bytesToHex(byte[])</B></A> - 
136
Static method in class freenet.support.<A HREF="../freenet/support/HexUtil.html" title="class in freenet.support">HexUtil</A>
137
<DD>&nbsp;
138
<DT><A HREF="../freenet/support/HexUtil.html#bytesToHexAppend(byte[], int, int, java.lang.StringBuffer)"><B>bytesToHexAppend(byte[], int, int, StringBuffer)</B></A> - 
139
Static method in class freenet.support.<A HREF="../freenet/support/HexUtil.html" title="class in freenet.support">HexUtil</A>
140
<DD>&nbsp;
141
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#bytesToInt(byte[], int[])"><B>bytesToInt(byte[], int[])</B></A> - 
142
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
143
<DD>Return the <code>int</code> represented by the bytes in
144
 <code>data</code> staring at offset <code>offset[0]</code>.
145
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#bytesToInts(int[], int, byte[], int, int)"><B>bytesToInts(int[], int, byte[], int, int)</B></A> - 
146
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
147
<DD>Convert an array of <code>bytes</code>s into an array of
148
 <code>ints</code>.
149
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#bytesToLong(byte[], int[])"><B>bytesToLong(byte[], int[])</B></A> - 
150
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
151
<DD>Return the <code>long</code> represented by the bytes in
152
 <code>data</code> staring at offset <code>offset[0]</code>.
153
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgUtil.html#bytesToMachineBytes(byte[])"><B>bytesToMachineBytes(byte[])</B></A> - 
154
Static method in class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgUtil.html" title="class in com.iver.cit.jdwglib.dwg">DwgUtil</A>
155
<DD>Convert bytes to machine value bytes
156
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#bytesToShort(byte[], int[])"><B>bytesToShort(byte[], int[])</B></A> - 
157
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
158
<DD>Return the <code>short</code> represented by the bytes in
159
 <code>data</code> staring at offset <code>offset[0]</code>.
160
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#bytesToString(byte[], int[])"><B>bytesToString(byte[], int[])</B></A> - 
161
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
162
<DD>Return the <code>String</code> represented by the bytes in
163
 <code>data</code> staring at offset <code>offset[0]</code>. 
164
</DL>
165
<HR>
166

  
167

  
168
<!-- ======= START OF BOTTOM NAVBAR ====== -->
169
<A NAME="navbar_bottom"><!-- --></A>
170
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
171
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
172
<TR>
173
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
174
<A NAME="navbar_bottom_firstrow"><!-- --></A>
175
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
176
  <TR ALIGN="center" VALIGN="top">
177
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
178
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
179
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
180
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
181
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
182
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
183
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
184
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
185
  </TR>
186
</TABLE>
187
</TD>
188
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
189
</EM>
190
</TD>
191
</TR>
192

  
193
<TR>
194
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
195
&nbsp;<A HREF="index-1.html"><B>PREV LETTER</B></A>&nbsp;
196
&nbsp;<A HREF="index-3.html"><B>NEXT LETTER</B></A></FONT></TD>
197
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
198
  <A HREF="../index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
199
&nbsp;<A HREF="index-2.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
200
&nbsp;<SCRIPT type="text/javascript">
201
  <!--
202
  if(window==top) {
203
    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
204
  }
205
  //-->
206
</SCRIPT>
207
<NOSCRIPT>
208
  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
209
</NOSCRIPT>
210

  
211
</FONT></TD>
212
</TR>
213
</TABLE>
214
<A NAME="skip-navbar_bottom"></A>
215
<!-- ======== END OF BOTTOM NAVBAR ======= -->
216

  
217
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">T</A> <A HREF="index-16.html">Z</A> <HR>
218

  
219
</BODY>
220
</HTML>
0 221

  
tags/Root_jdwglib_03_gvSIG/libraries/libDwg/doc/javadoc/index-files/index-3.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_08) on Wed Sep 07 16:36:34 CEST 2005 -->
6
<TITLE>
7
C-Index
8
</TITLE>
9

  
10

  
11
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
12

  
13
<SCRIPT type="text/javascript">
14
function windowTitle()
15
{
16
    parent.document.title="C-Index";
17
}
18
</SCRIPT>
19

  
20
</HEAD>
21

  
22
<BODY BGCOLOR="white" onload="windowTitle();">
23

  
24

  
25
<!-- ========= START OF TOP NAVBAR ======= -->
26
<A NAME="navbar_top"><!-- --></A>
27
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
28
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
29
<TR>
30
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
31
<A NAME="navbar_top_firstrow"><!-- --></A>
32
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
33
  <TR ALIGN="center" VALIGN="top">
34
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
35
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
36
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
37
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
38
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
39
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
40
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
41
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
42
  </TR>
43
</TABLE>
44
</TD>
45
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
46
</EM>
47
</TD>
48
</TR>
49

  
50
<TR>
51
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
52
&nbsp;<A HREF="index-2.html"><B>PREV LETTER</B></A>&nbsp;
53
&nbsp;<A HREF="index-4.html"><B>NEXT LETTER</B></A></FONT></TD>
54
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
55
  <A HREF="../index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
56
&nbsp;<A HREF="index-3.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
57
&nbsp;<SCRIPT type="text/javascript">
58
  <!--
59
  if(window==top) {
60
    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
61
  }
62
  //-->
63
</SCRIPT>
64
<NOSCRIPT>
65
  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
66
</NOSCRIPT>
67

  
68
</FONT></TD>
69
</TR>
70
</TABLE>
71
<A NAME="skip-navbar_top"></A>
72
<!-- ========= END OF TOP NAVBAR ========= -->
73

  
74
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">T</A> <A HREF="index-16.html">Z</A> <HR>
75
<A NAME="_C_"><!-- --></A><H2>
76
<B>C</B></H2>
77
<DL>
78
<DT><A HREF="../com/iver/cit/javacad/util/AcadExtrusionCalculator.html#CalculateAcadExtrusion(double[], double[])"><B>CalculateAcadExtrusion(double[], double[])</B></A> - 
79
Static method in class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/AcadExtrusionCalculator.html" title="class in com.iver.cit.javacad.util">AcadExtrusionCalculator</A>
80
<DD>Method that allows to apply the extrusion transformation of Autocad
81
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html#calculateCadModelDwgPolylines()"><B>calculateCadModelDwgPolylines()</B></A> - 
82
Method in class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg">DwgFile</A>
83
<DD>Configure the geometry of the polylines in a DWG file from the vertex list in
84
 this DWG file. 
85
<DT><A HREF="../com/iver/cit/javacad/util/GisModelCurveCalculator.html#calculateGisModelArc(java.awt.geom.Point2D, double, double, double)"><B>calculateGisModelArc(Point2D, double, double, double)</B></A> - 
86
Static method in class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/GisModelCurveCalculator.html" title="class in com.iver.cit.javacad.util">GisModelCurveCalculator</A>
87
<DD>This method calculates an array of Point2D that represents an arc. 
88
<DT><A HREF="../com/iver/cit/javacad/util/GisModelCurveCalculator.html#calculateGisModelBulge(java.awt.geom.Point2D[], double[])"><B>calculateGisModelBulge(Point2D[], double[])</B></A> - 
89
Static method in class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/GisModelCurveCalculator.html" title="class in com.iver.cit.javacad.util">GisModelCurveCalculator</A>
90
<DD>This method applies an array of bulges to an array of Point2D that defines a
91
 polyline. 
92
<DT><A HREF="../com/iver/cit/javacad/util/GisModelCurveCalculator.html#calculateGisModelCircle(java.awt.geom.Point2D, double)"><B>calculateGisModelCircle(Point2D, double)</B></A> - 
93
Static method in class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/GisModelCurveCalculator.html" title="class in com.iver.cit.javacad.util">GisModelCurveCalculator</A>
94
<DD>This method calculates an array of Point2D that represents a circle. 
95
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html#calculateGisModelDwgPolylines()"><B>calculateGisModelDwgPolylines()</B></A> - 
96
Method in class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg">DwgFile</A>
97
<DD>Configure the geometry of the polylines in a DWG file from the vertex list in
98
 this DWG file. 
99
<DT><A HREF="../com/iver/cit/javacad/util/GisModelCurveCalculator.html#calculateGisModelEllipse(java.awt.geom.Point2D, java.awt.geom.Point2D, double, double, double)"><B>calculateGisModelEllipse(Point2D, Point2D, double, double, double)</B></A> - 
100
Static method in class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/GisModelCurveCalculator.html" title="class in com.iver.cit.javacad.util">GisModelCurveCalculator</A>
101
<DD>This method calculates an array of Point2D that represents a ellipse. 
102
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgArc.html#clone()"><B>clone()</B></A> - 
103
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgArc.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgArc</A>
104
<DD>&nbsp;
105
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttdef.html#clone()"><B>clone()</B></A> - 
106
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttdef.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgAttdef</A>
107
<DD>&nbsp;
108
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttrib.html#clone()"><B>clone()</B></A> - 
109
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttrib.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgAttrib</A>
110
<DD>&nbsp;
111
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgCircle.html#clone()"><B>clone()</B></A> - 
112
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgCircle.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgCircle</A>
113
<DD>&nbsp;
114
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgEllipse.html#clone()"><B>clone()</B></A> - 
115
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgEllipse.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgEllipse</A>
116
<DD>&nbsp;
117
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgInsert.html#clone()"><B>clone()</B></A> - 
118
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgInsert.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgInsert</A>
119
<DD>&nbsp;
120
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLine.html#clone()"><B>clone()</B></A> - 
121
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLine.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLine</A>
122
<DD>&nbsp;
123
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLinearDimension.html#clone()"><B>clone()</B></A> - 
124
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLinearDimension.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLinearDimension</A>
125
<DD>&nbsp;
126
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLwPolyline.html#clone()"><B>clone()</B></A> - 
127
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLwPolyline.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLwPolyline</A>
128
<DD>&nbsp;
129
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgMText.html#clone()"><B>clone()</B></A> - 
130
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgMText.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgMText</A>
131
<DD>&nbsp;
132
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPoint.html#clone()"><B>clone()</B></A> - 
133
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPoint.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgPoint</A>
134
<DD>&nbsp;
135
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline2D.html#clone()"><B>clone()</B></A> - 
136
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline2D.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgPolyline2D</A>
137
<DD>&nbsp;
138
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline3D.html#clone()"><B>clone()</B></A> - 
139
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline3D.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgPolyline3D</A>
140
<DD>&nbsp;
141
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSolid.html#clone()"><B>clone()</B></A> - 
142
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSolid.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgSolid</A>
143
<DD>&nbsp;
144
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSpline.html#clone()"><B>clone()</B></A> - 
145
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSpline.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgSpline</A>
146
<DD>&nbsp;
147
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgText.html#clone()"><B>clone()</B></A> - 
148
Method in class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgText.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgText</A>
149
<DD>&nbsp;
150
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/package-summary.html"><B>com.iver.cit.gvsig.fmap.drivers.dgn</B></A> - package com.iver.cit.gvsig.fmap.drivers.dgn<DD>&nbsp;<DT><A HREF="../com/iver/cit/javacad/util/package-summary.html"><B>com.iver.cit.javacad.util</B></A> - package com.iver.cit.javacad.util<DD>&nbsp;<DT><A HREF="../com/iver/cit/jdwglib/dwg/package-summary.html"><B>com.iver.cit.jdwglib.dwg</B></A> - package com.iver.cit.jdwglib.dwg<DD>&nbsp;<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/package-summary.html"><B>com.iver.cit.jdwglib.dwg.objects</B></A> - package com.iver.cit.jdwglib.dwg.objects<DD>&nbsp;<DT><A HREF="../com/iver/cit/jdwglib/test/package-summary.html"><B>com.iver.cit.jdwglib.test</B></A> - package com.iver.cit.jdwglib.test<DD>&nbsp;<DT><A HREF="../com/iver/cit/javacad/util/TextToUnicodeConverter.html#convertText(java.lang.String)"><B>convertText(String)</B></A> - 
151
Static method in class com.iver.cit.javacad.util.<A HREF="../com/iver/cit/javacad/util/TextToUnicodeConverter.html" title="class in com.iver.cit.javacad.util">TextToUnicodeConverter</A>
152
<DD>This method allows to convert an Autocad text in an Unicode text
153
<DT><A HREF="../freenet/support/HexUtil.html#countBytesForBits(int)"><B>countBytesForBits(int)</B></A> - 
154
Static method in class freenet.support.<A HREF="../freenet/support/HexUtil.html" title="class in freenet.support">HexUtil</A>
155
<DD>&nbsp;
156
</DL>
157
<HR>
158

  
159

  
160
<!-- ======= START OF BOTTOM NAVBAR ====== -->
161
<A NAME="navbar_bottom"><!-- --></A>
162
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
163
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
164
<TR>
165
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
166
<A NAME="navbar_bottom_firstrow"><!-- --></A>
167
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
168
  <TR ALIGN="center" VALIGN="top">
169
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
170
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
171
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
172
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
173
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
174
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
175
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
176
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
177
  </TR>
178
</TABLE>
179
</TD>
180
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
181
</EM>
182
</TD>
183
</TR>
184

  
185
<TR>
186
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
187
&nbsp;<A HREF="index-2.html"><B>PREV LETTER</B></A>&nbsp;
188
&nbsp;<A HREF="index-4.html"><B>NEXT LETTER</B></A></FONT></TD>
189
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
190
  <A HREF="../index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
191
&nbsp;<A HREF="index-3.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
192
&nbsp;<SCRIPT type="text/javascript">
193
  <!--
194
  if(window==top) {
195
    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
196
  }
197
  //-->
198
</SCRIPT>
199
<NOSCRIPT>
200
  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
201
</NOSCRIPT>
202

  
203
</FONT></TD>
204
</TR>
205
</TABLE>
206
<A NAME="skip-navbar_bottom"></A>
207
<!-- ======== END OF BOTTOM NAVBAR ======= -->
208

  
209
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">T</A> <A HREF="index-16.html">Z</A> <HR>
210

  
211
</BODY>
212
</HTML>
0 213

  
tags/Root_jdwglib_03_gvSIG/libraries/libDwg/doc/javadoc/index-files/index-4.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_08) on Wed Sep 07 16:36:34 CEST 2005 -->
6
<TITLE>
7
D-Index
8
</TITLE>
9

  
10

  
11
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
12

  
13
<SCRIPT type="text/javascript">
14
function windowTitle()
15
{
16
    parent.document.title="D-Index";
17
}
18
</SCRIPT>
19

  
20
</HEAD>
21

  
22
<BODY BGCOLOR="white" onload="windowTitle();">
23

  
24

  
25
<!-- ========= START OF TOP NAVBAR ======= -->
26
<A NAME="navbar_top"><!-- --></A>
27
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
28
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
29
<TR>
30
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
31
<A NAME="navbar_top_firstrow"><!-- --></A>
32
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
33
  <TR ALIGN="center" VALIGN="top">
34
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
35
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
36
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
37
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
38
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
39
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
40
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
41
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
42
  </TR>
43
</TABLE>
44
</TD>
45
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
46
</EM>
47
</TD>
48
</TR>
49

  
50
<TR>
51
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
52
&nbsp;<A HREF="index-3.html"><B>PREV LETTER</B></A>&nbsp;
53
&nbsp;<A HREF="index-5.html"><B>NEXT LETTER</B></A></FONT></TD>
54
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
55
  <A HREF="../index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
56
&nbsp;<A HREF="index-4.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
57
&nbsp;<SCRIPT type="text/javascript">
58
  <!--
59
  if(window==top) {
60
    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
61
  }
62
  //-->
63
</SCRIPT>
64
<NOSCRIPT>
65
  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
66
</NOSCRIPT>
67

  
68
</FONT></TD>
69
</TR>
70
</TABLE>
71
<A NAME="skip-navbar_top"></A>
72
<!-- ========= END OF TOP NAVBAR ========= -->
73

  
74
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">T</A> <A HREF="index-16.html">Z</A> <HR>
75
<A NAME="_D_"><!-- --></A><H2>
76
<B>D</B></H2>
77
<DL>
78
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgArc.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgArc</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgArc.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgArc</A>.<DD>The DwgArc class represents a DWG Arc<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgArc.html#DwgArc()"><B>DwgArc()</B></A> - 
79
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgArc.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgArc</A>
80
<DD>&nbsp;
81
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttdef.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgAttdef</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttdef.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgAttdef</A>.<DD>The DwgAttdef class represents a DWG Attdef<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttdef.html#DwgAttdef()"><B>DwgAttdef()</B></A> - 
82
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttdef.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgAttdef</A>
83
<DD>&nbsp;
84
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttrib.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgAttrib</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttrib.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgAttrib</A>.<DD>The DwgAttrib class represents a DWG Attrib<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttrib.html#DwgAttrib()"><B>DwgAttrib()</B></A> - 
85
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgAttrib.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgAttrib</A>
86
<DD>&nbsp;
87
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlock.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgBlock</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlock.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgBlock</A>.<DD>The DwgBlock class represents a DWG Block<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlock.html#DwgBlock()"><B>DwgBlock()</B></A> - 
88
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlock.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgBlock</A>
89
<DD>&nbsp;
90
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlockControl.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgBlockControl</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlockControl.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgBlockControl</A>.<DD>The DwgBlockControl class represents a DWG Block control<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlockControl.html#DwgBlockControl()"><B>DwgBlockControl()</B></A> - 
91
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlockControl.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgBlockControl</A>
92
<DD>&nbsp;
93
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlockHeader.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgBlockHeader</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlockHeader.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgBlockHeader</A>.<DD>The DwgBlockHeader class represents a DWG Block header<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlockHeader.html#DwgBlockHeader()"><B>DwgBlockHeader()</B></A> - 
94
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgBlockHeader.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgBlockHeader</A>
95
<DD>Create new DwgBlockHeader object
96
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgCircle.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgCircle</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgCircle.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgCircle</A>.<DD>The DwgCircle class represents a DWG Circle<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgCircle.html#DwgCircle()"><B>DwgCircle()</B></A> - 
97
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgCircle.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgCircle</A>
98
<DD>&nbsp;
99
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgClass.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgClass</B></A> - class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgClass.html" title="class in com.iver.cit.jdwglib.dwg">DwgClass</A>.<DD>This class implements a DWG Class<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgClass.html#DwgClass()"><B>DwgClass()</B></A> - 
100
Constructor for class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgClass.html" title="class in com.iver.cit.jdwglib.dwg">DwgClass</A>
101
<DD>&nbsp;
102
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgEllipse.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgEllipse</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgEllipse.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgEllipse</A>.<DD>The DwgEllipse class represents a DWG Ellipse<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgEllipse.html#DwgEllipse()"><B>DwgEllipse()</B></A> - 
103
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgEllipse.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgEllipse</A>
104
<DD>&nbsp;
105
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgEndblk.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgEndblk</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgEndblk.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgEndblk</A>.<DD>The DwgEndblk class represents a DWG Endblk<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgEndblk.html#DwgEndblk()"><B>DwgEndblk()</B></A> - 
106
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgEndblk.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgEndblk</A>
107
<DD>&nbsp;
108
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgFile</B></A> - class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg">DwgFile</A>.<DD>The DwgFile class provides a revision-neutral interface for reading and handling
109
 DWG files
110
 Reading methods are useful for reading DWG files, and handling methods like
111
 calculateDwgPolylines() are useful for handling more complex
112
 objects in the DWG file<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html#DwgFile(java.lang.String)"><B>DwgFile(String)</B></A> - 
113
Constructor for class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFile.html" title="class in com.iver.cit.jdwglib.dwg">DwgFile</A>
114
<DD>Creates a new DwgFile object given the absolute path to
115
 a DWG file
116
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFileReader.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgFileReader</B></A> - class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFileReader.html" title="class in com.iver.cit.jdwglib.dwg">DwgFileReader</A>.<DD>The DwgFileReader reads all the DWG format versions<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFileReader.html#DwgFileReader()"><B>DwgFileReader()</B></A> - 
117
Constructor for class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFileReader.html" title="class in com.iver.cit.jdwglib.dwg">DwgFileReader</A>
118
<DD>&nbsp;
119
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFileV14Reader.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgFileV14Reader</B></A> - class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFileV14Reader.html" title="class in com.iver.cit.jdwglib.dwg">DwgFileV14Reader</A>.<DD>The DwgFileV14Reader reads the DWG version 14 format<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFileV14Reader.html#DwgFileV14Reader()"><B>DwgFileV14Reader()</B></A> - 
120
Constructor for class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFileV14Reader.html" title="class in com.iver.cit.jdwglib.dwg">DwgFileV14Reader</A>
121
<DD>&nbsp;
122
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFileV15Reader.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgFileV15Reader</B></A> - class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFileV15Reader.html" title="class in com.iver.cit.jdwglib.dwg">DwgFileV15Reader</A>.<DD>The DwgFileV15Reader reads the DWG version 15 format<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgFileV15Reader.html#DwgFileV15Reader()"><B>DwgFileV15Reader()</B></A> - 
123
Constructor for class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgFileV15Reader.html" title="class in com.iver.cit.jdwglib.dwg">DwgFileV15Reader</A>
124
<DD>&nbsp;
125
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgHeader.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgHeader</B></A> - class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgHeader.html" title="class in com.iver.cit.jdwglib.dwg">DwgHeader</A>.<DD>The DwgHeader class implements the Header of a DWG file<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgHeader.html#DwgHeader()"><B>DwgHeader()</B></A> - 
126
Constructor for class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgHeader.html" title="class in com.iver.cit.jdwglib.dwg">DwgHeader</A>
127
<DD>&nbsp;
128
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgInsert.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgInsert</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgInsert.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgInsert</A>.<DD>The DwgInsert class represents a DWG Insert<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgInsert.html#DwgInsert()"><B>DwgInsert()</B></A> - 
129
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgInsert.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgInsert</A>
130
<DD>&nbsp;
131
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLayer.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgLayer</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLayer.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLayer</A>.<DD>The DwgLayer class represents a DWG Layer<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLayer.html#DwgLayer()"><B>DwgLayer()</B></A> - 
132
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLayer.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLayer</A>
133
<DD>&nbsp;
134
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLayerControl.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgLayerControl</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLayerControl.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLayerControl</A>.<DD>The DwgLayerControl class represents a DWG Layer control<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLayerControl.html#DwgLayerControl()"><B>DwgLayerControl()</B></A> - 
135
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLayerControl.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLayerControl</A>
136
<DD>&nbsp;
137
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLine.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgLine</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLine.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLine</A>.<DD>The DwgLine class represents a DWG Line<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLine.html#DwgLine()"><B>DwgLine()</B></A> - 
138
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLine.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLine</A>
139
<DD>&nbsp;
140
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLinearDimension.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgLinearDimension</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLinearDimension.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLinearDimension</A>.<DD>The DwgLinearDimension class represents a DWG Linear dimension<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLinearDimension.html#DwgLinearDimension()"><B>DwgLinearDimension()</B></A> - 
141
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLinearDimension.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLinearDimension</A>
142
<DD>&nbsp;
143
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLwPolyline.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgLwPolyline</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLwPolyline.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLwPolyline</A>.<DD>The DwgLwPolyline class represents a DWG LwPolyline<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLwPolyline.html#DwgLwPolyline()"><B>DwgLwPolyline()</B></A> - 
144
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgLwPolyline.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgLwPolyline</A>
145
<DD>&nbsp;
146
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgMText.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgMText</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgMText.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgMText</A>.<DD>The DwgMText class represents a DWG MText<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgMText.html#DwgMText()"><B>DwgMText()</B></A> - 
147
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgMText.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgMText</A>
148
<DD>&nbsp;
149
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgObject.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgObject</B></A> - class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgObject.html" title="class in com.iver.cit.jdwglib.dwg">DwgObject</A>.<DD>The DwgObject class represents a DWG object<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgObject.html#DwgObject()"><B>DwgObject()</B></A> - 
150
Constructor for class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgObject.html" title="class in com.iver.cit.jdwglib.dwg">DwgObject</A>
151
<DD>&nbsp;
152
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgObjectOffset.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgObjectOffset</B></A> - class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgObjectOffset.html" title="class in com.iver.cit.jdwglib.dwg">DwgObjectOffset</A>.<DD>The DwgObjectOffset class is useful to store the handle of an object with its
153
 offset in the DWG file<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgObjectOffset.html#DwgObjectOffset(int, int)"><B>DwgObjectOffset(int, int)</B></A> - 
154
Constructor for class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgObjectOffset.html" title="class in com.iver.cit.jdwglib.dwg">DwgObjectOffset</A>
155
<DD>Create a new DwgObjectOffset object
156
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPoint.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgPoint</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPoint.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgPoint</A>.<DD>The DwgPoint class represents a DWG Point<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPoint.html#DwgPoint()"><B>DwgPoint()</B></A> - 
157
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPoint.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgPoint</A>
158
<DD>&nbsp;
159
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline2D.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgPolyline2D</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline2D.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgPolyline2D</A>.<DD>The DwgPolyline2D class represents a DWG Polyline2D<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline2D.html#DwgPolyline2D()"><B>DwgPolyline2D()</B></A> - 
160
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline2D.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgPolyline2D</A>
161
<DD>&nbsp;
162
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline3D.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgPolyline3D</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline3D.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgPolyline3D</A>.<DD>The DwgPolyline3D class represents a DWG Polyline3D<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline3D.html#DwgPolyline3D()"><B>DwgPolyline3D()</B></A> - 
163
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgPolyline3D.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgPolyline3D</A>
164
<DD>&nbsp;
165
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgSectionOffset.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgSectionOffset</B></A> - class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgSectionOffset.html" title="class in com.iver.cit.jdwglib.dwg">DwgSectionOffset</A>.<DD>The DwgSectionOffset class is useful to store the key of a DWG section with its seek
166
 (or offset) and with its size<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgSectionOffset.html#DwgSectionOffset(java.lang.String, int, int)"><B>DwgSectionOffset(String, int, int)</B></A> - 
167
Constructor for class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgSectionOffset.html" title="class in com.iver.cit.jdwglib.dwg">DwgSectionOffset</A>
168
<DD>Creates a new DwgSectionOffset object
169
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSeqend.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgSeqend</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSeqend.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgSeqend</A>.<DD>The DwgSeqend class represents a DWG Seqend<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSeqend.html#DwgSeqend()"><B>DwgSeqend()</B></A> - 
170
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSeqend.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgSeqend</A>
171
<DD>&nbsp;
172
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSolid.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgSolid</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSolid.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgSolid</A>.<DD>The DwgSolid class represents a DWG Solid<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSolid.html#DwgSolid()"><B>DwgSolid()</B></A> - 
173
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSolid.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgSolid</A>
174
<DD>&nbsp;
175
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSpline.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgSpline</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSpline.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgSpline</A>.<DD>The DwgSpline class represents a DWG Spline<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSpline.html#DwgSpline()"><B>DwgSpline()</B></A> - 
176
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgSpline.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgSpline</A>
177
<DD>&nbsp;
178
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgText.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgText</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgText.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgText</A>.<DD>The DwgText class represents a DWG Text<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgText.html#DwgText()"><B>DwgText()</B></A> - 
179
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgText.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgText</A>
180
<DD>&nbsp;
181
<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgUtil.html" title="class in com.iver.cit.jdwglib.dwg"><B>DwgUtil</B></A> - class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgUtil.html" title="class in com.iver.cit.jdwglib.dwg">DwgUtil</A>.<DD>The DwgUtil class contains the essential set of functions for reading bitstreams
182
 in DWG files<DT><A HREF="../com/iver/cit/jdwglib/dwg/DwgUtil.html#DwgUtil()"><B>DwgUtil()</B></A> - 
183
Constructor for class com.iver.cit.jdwglib.dwg.<A HREF="../com/iver/cit/jdwglib/dwg/DwgUtil.html" title="class in com.iver.cit.jdwglib.dwg">DwgUtil</A>
184
<DD>&nbsp;
185
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgVertex2D.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgVertex2D</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgVertex2D.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgVertex2D</A>.<DD>The DwgVertex2D class represents a DWG Vertex2D<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgVertex2D.html#DwgVertex2D()"><B>DwgVertex2D()</B></A> - 
186
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgVertex2D.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgVertex2D</A>
187
<DD>&nbsp;
188
<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgVertex3D.html" title="class in com.iver.cit.jdwglib.dwg.objects"><B>DwgVertex3D</B></A> - class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgVertex3D.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgVertex3D</A>.<DD>The DwgVertex3D class represents a DWG Vertex3D<DT><A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgVertex3D.html#DwgVertex3D()"><B>DwgVertex3D()</B></A> - 
189
Constructor for class com.iver.cit.jdwglib.dwg.objects.<A HREF="../com/iver/cit/jdwglib/dwg/objects/DwgVertex3D.html" title="class in com.iver.cit.jdwglib.dwg.objects">DwgVertex3D</A>
190
<DD>&nbsp;
191
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#digits"><B>digits</B></A> - 
192
Static variable in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
193
<DD>A nibble->char mapping for printing out bytes.
194
<DT><A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html#doubleToBytes(double, byte[], int[])"><B>doubleToBytes(double, byte[], int[])</B></A> - 
195
Static method in class com.iver.cit.gvsig.fmap.drivers.dgn.<A HREF="../com/iver/cit/gvsig/fmap/drivers/dgn/ByteUtils.html" title="class in com.iver.cit.gvsig.fmap.drivers.dgn">ByteUtils</A>
196
<DD>Write the bytes representing <code>d</code> into the byte array
197
 <code>data</code>, starting at index <code>offset [0]</code>, and
198
 increment <code>offset [0]</code> by the number of bytes written; if
199
 <code>data == null</code>, increment <code>offset [0]</code> by the
200
 number of bytes that would have been written otherwise.
201
</DL>
202
<HR>
203

  
204

  
205
<!-- ======= START OF BOTTOM NAVBAR ====== -->
206
<A NAME="navbar_bottom"><!-- --></A>
207
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
208
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
209
<TR>
210
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
211
<A NAME="navbar_bottom_firstrow"><!-- --></A>
212
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
213
  <TR ALIGN="center" VALIGN="top">
214
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
215
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
216
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
217
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
218
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
219
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
220
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
221
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
222
  </TR>
223
</TABLE>
224
</TD>
225
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
226
</EM>
227
</TD>
228
</TR>
229

  
230
<TR>
231
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
232
&nbsp;<A HREF="index-3.html"><B>PREV LETTER</B></A>&nbsp;
233
&nbsp;<A HREF="index-5.html"><B>NEXT LETTER</B></A></FONT></TD>
234
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
235
  <A HREF="../index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
236
&nbsp;<A HREF="index-4.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
237
&nbsp;<SCRIPT type="text/javascript">
238
  <!--
239
  if(window==top) {
240
    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
241
  }
242
  //-->
243
</SCRIPT>
244
<NOSCRIPT>
245
  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
246
</NOSCRIPT>
247

  
248
</FONT></TD>
249
</TR>
250
</TABLE>
251
<A NAME="skip-navbar_bottom"></A>
252
<!-- ======== END OF BOTTOM NAVBAR ======= -->
253

  
254
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">P</A> <A HREF="index-13.html">R</A> <A HREF="index-14.html">S</A> <A HREF="index-15.html">T</A> <A HREF="index-16.html">Z</A> <HR>
255

  
256
</BODY>
257
</HTML>
0 258

  
tags/Root_jdwglib_03_gvSIG/libraries/libDwg/doc/javadoc/index-files/index-5.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_08) on Wed Sep 07 16:36:34 CEST 2005 -->
6
<TITLE>
7
E-Index
8
</TITLE>
9

  
10

  
11
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
12

  
13
<SCRIPT type="text/javascript">
14
function windowTitle()
15
{
16
    parent.document.title="E-Index";
17
}
18
</SCRIPT>
19

  
20
</HEAD>
21

  
22
<BODY BGCOLOR="white" onload="windowTitle();">
23

  
24

  
25
<!-- ========= START OF TOP NAVBAR ======= -->
26
<A NAME="navbar_top"><!-- --></A>
27
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
28
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
29
<TR>
30
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
31
<A NAME="navbar_top_firstrow"><!-- --></A>
32
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
33
  <TR ALIGN="center" VALIGN="top">
34
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
35
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
36
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
37
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
38
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
39
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
40
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
41
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
42
  </TR>
43
</TABLE>
44
</TD>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff