Source Code Cross Referenced for S32Vector.java in  » Scripting » Kawa » gnu » lists » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Scripting » Kawa » gnu.lists 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // Copyright (c) 2001, 2002  Per M.A. Bothner and Brainfood Inc.
002:        // This is free software;  for terms and warranty disclaimer see ./COPYING.
003:
004:        package gnu.lists;
005:
006:        import java.io.*;
007:
008:        /** Simple adjustable-length vector of signed 32-bit integers (ints). */
009:
010:        public class S32Vector extends SimpleVector implements  Externalizable
011:        /* #ifdef JAVA2 */
012:        , Comparable
013:        /* #endif */
014:        {
015:            int[] data;
016:            protected static int[] empty = new int[0];
017:
018:            public S32Vector() {
019:                data = empty;
020:            }
021:
022:            public S32Vector(int size, int value) {
023:                int[] array = new int[size];
024:                data = array;
025:                this .size = size;
026:                while (--size >= 0)
027:                    array[size] = value;
028:            }
029:
030:            public S32Vector(int size) {
031:                this .data = new int[size];
032:                this .size = size;
033:            }
034:
035:            public S32Vector(int[] data) {
036:                this .data = data;
037:                size = data.length;
038:            }
039:
040:            public S32Vector(Sequence seq) {
041:                data = new int[seq.size()];
042:                addAll(seq);
043:            }
044:
045:            /** Get the allocated length of the data buffer. */
046:            public int getBufferLength() {
047:                return data.length;
048:            }
049:
050:            public void setBufferLength(int length) {
051:                int oldLength = data.length;
052:                if (oldLength != length) {
053:                    int[] tmp = new int[length];
054:                    System.arraycopy(data, 0, tmp, 0,
055:                            oldLength < length ? oldLength : length);
056:                    data = tmp;
057:                }
058:            }
059:
060:            protected Object getBuffer() {
061:                return data;
062:            }
063:
064:            public final int intAt(int index) {
065:                if (index > size)
066:                    throw new IndexOutOfBoundsException();
067:                return data[index];
068:            }
069:
070:            public final int intAtBuffer(int index) {
071:                return data[index];
072:            }
073:
074:            public final Object get(int index) {
075:                if (index > size)
076:                    throw new IndexOutOfBoundsException();
077:                return Convert.toObject(data[index]);
078:            }
079:
080:            public final Object getBuffer(int index) {
081:                return Convert.toObject(data[index]);
082:            }
083:
084:            public Object setBuffer(int index, Object value) {
085:                int old = data[index];
086:                data[index] = Convert.toInt(value);
087:                return Convert.toObject(old);
088:            }
089:
090:            public final void setIntAt(int index, int value) {
091:                if (index > size)
092:                    throw new IndexOutOfBoundsException();
093:                data[index] = value;
094:            }
095:
096:            public final void setIntAtBuffer(int index, int value) {
097:                data[index] = value;
098:            }
099:
100:            protected void clearBuffer(int start, int count) {
101:                while (--count >= 0)
102:                    data[start++] = 0;
103:            }
104:
105:            public int getElementKind() {
106:                return INT_S32_VALUE;
107:            }
108:
109:            public String getTag() {
110:                return "s32";
111:            }
112:
113:            public boolean consumeNext(int ipos, Consumer out) {
114:                int index = ipos >>> 1;
115:                if (index >= size)
116:                    return false;
117:                out.writeInt(data[index]);
118:                return true;
119:            }
120:
121:            public void consumePosRange(int iposStart, int iposEnd, Consumer out) {
122:                if (out.ignoring())
123:                    return;
124:                int i = iposStart >>> 1;
125:                int end = iposEnd >>> 1;
126:                if (end > size)
127:                    end = size;
128:                for (; i < end; i++)
129:                    out.writeInt(data[i]);
130:            }
131:
132:            public int compareTo(Object obj) {
133:                return compareToInt(this , (S32Vector) obj);
134:            }
135:
136:            /**
137:             * @serialData Write 'size' (using writeInt),
138:             *   followed by 'size' elements in order (using writeInt).
139:             */
140:            public void writeExternal(ObjectOutput out) throws IOException {
141:                int size = this .size;
142:                out.writeInt(size);
143:                for (int i = 0; i < size; i++)
144:                    out.writeInt(data[i]);
145:            }
146:
147:            public void readExternal(ObjectInput in) throws IOException,
148:                    ClassNotFoundException {
149:                int size = in.readInt();
150:                int[] data = new int[size];
151:                for (int i = 0; i < size; i++)
152:                    data[i] = in.readInt();
153:                this.data = data;
154:                this.size = size;
155:            }
156:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.