Source Code Cross Referenced for HashtableBase.java in  » Scripting » sisc » sisc » modules » hashtable » 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 » sisc » sisc.modules.hashtable 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package sisc.modules.hashtable;
02:
03:        import java.io.IOException;
04:
05:        import sisc.io.ValueWriter;
06:        import sisc.ser.Serializer;
07:        import sisc.ser.Deserializer;
08:        import sisc.util.ExpressionVisitor;
09:        import sisc.data.Value;
10:        import sisc.data.Pair;
11:        import sisc.data.Procedure;
12:
13:        public abstract class HashtableBase extends Value {
14:
15:            public abstract Procedure getEqualsProc();
16:
17:            public abstract Procedure getHashProc();
18:
19:            public abstract Value get(Value k);
20:
21:            public abstract Value put(Value k, Value v);
22:
23:            public abstract Value remove(Value k);
24:
25:            public abstract int size();
26:
27:            public abstract void clear();
28:
29:            public abstract void addAList(Pair p);
30:
31:            public abstract Pair toAList();
32:
33:            public abstract Pair keys();
34:
35:            public abstract boolean valueEqual(Value v);
36:
37:            public abstract int valueHashCode();
38:
39:            public abstract void serialize(Serializer s) throws IOException;
40:
41:            public abstract void deserialize(Deserializer s) throws IOException;
42:
43:            public abstract boolean visit(ExpressionVisitor v);
44:
45:            public abstract void display(ValueWriter w) throws IOException;
46:        }
47:
48:        /*
49:         * The contents of this file are subject to the Mozilla Public
50:         * License Version 1.1 (the "License"); you may not use this file
51:         * except in compliance with the License. You may obtain a copy of
52:         * the License at http://www.mozilla.org/MPL/
53:         * 
54:         * Software distributed under the License is distributed on an "AS
55:         * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
56:         * implied. See the License for the specific language governing
57:         * rights and limitations under the License.
58:         * 
59:         * The Original Code is the Second Interpreter of Scheme Code (SISC).
60:         * 
61:         * The Initial Developer of the Original Code is Scott G. Miller.
62:         * Portions created by Scott G. Miller are Copyright (C) 2000-2007
63:         * Scott G. Miller.  All Rights Reserved.
64:         * 
65:         * Contributor(s):
66:         * Matthias Radestock 
67:         * 
68:         * Alternatively, the contents of this file may be used under the
69:         * terms of the GNU General Public License Version 2 or later (the
70:         * "GPL"), in which case the provisions of the GPL are applicable 
71:         * instead of those above.  If you wish to allow use of your 
72:         * version of this file only under the terms of the GPL and not to
73:         * allow others to use your version of this file under the MPL,
74:         * indicate your decision by deleting the provisions above and
75:         * replace them with the notice and other provisions required by
76:         * the GPL.  If you do not delete the provisions above, a recipient
77:         * may use your version of this file under either the MPL or the
78:         * GPL.
79:         */
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.