Source Code Cross Referenced for IJGAPFactory.java in  » Development » jgap » org » jgap » 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 » Development » jgap » org.jgap 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * This file is part of JGAP.
003:         *
004:         * JGAP offers a dual license model containing the LGPL as well as the MPL.
005:         *
006:         * For licensing information please see the file license.txt included with JGAP
007:         * or have a look at the top of class org.jgap.Chromosome which representatively
008:         * includes the JGAP license policy applicable for any file delivered with JGAP.
009:         */
010:        package org.jgap;
011:
012:        import java.io.*;
013:        import java.util.*;
014:
015:        /**
016:         * Interface for central factory, see JGAPFactory.
017:         *
018:         * @author Klaus Meffert
019:         * @since 2.6
020:         */
021:        public interface IJGAPFactory extends Serializable {
022:            /** String containing the CVS revision. Read out via reflection!*/
023:            final static String CVS_REVISION = "$Revision: 1.8 $";
024:
025:            void setParameters(Collection a_parameters);
026:
027:            /**
028:             * @return newly created instance of a RandomGenerator
029:             */
030:            RandomGenerator createRandomGenerator();
031:
032:            /**
033:             * Retrieves a clone handler capable of clone the given class.
034:             * @param a_obj the object to clone (maybe null)
035:             * @param a_classToClone the class to clone an object of
036:             * @return the clone handler found capable of clone the given class, or null
037:             * if none registered
038:             *
039:             * @author Klaus Meffert
040:             * @since 2.6
041:             */
042:
043:            ICloneHandler getCloneHandlerFor(Object a_obj, Class a_classToClone);
044:
045:            /**
046:             * Registers a clone handler that could be retrieved by
047:             * getCloneHandlerFor(Class).
048:             * @param a_cloneHandler the ICloneHandler to register
049:             * @return index of the added clone handler, needed when removeCloneHandler
050:             * will be called
051:             *
052:             * @author Klaus Meffert
053:             * @since 2.6
054:             */
055:
056:            int registerCloneHandler(ICloneHandler a_cloneHandler);
057:
058:            /**
059:             * Retrieves an initializer capable of initializing the Object of the given
060:             * class.
061:             * @param a_obj the object to init (maybe null)
062:             * @param a_objToInit the object class to init
063:             * @return the initializer found capable of initializing an object of the
064:             * given class, or null if none registered
065:             *
066:             * @author Klaus Meffert
067:             * @since 2.6
068:             */
069:            IInitializer getInitializerFor(Object a_obj, Class a_objToInit);
070:
071:            /**
072:             * Registers an initializer that could be retrieved by
073:             * getInitializerFor(Class).
074:             * @param a_chromIniter the IChromosomeInitializer to register
075:             * @return index of the added initializer, needed when
076:             * removeChromosomeInitializer will be called
077:             *
078:             * @author Klaus Meffert
079:             * @since 2.6
080:             */
081:
082:            int registerInitializer(IInitializer a_chromIniter);
083:
084:            void setGeneticOperatorConstraint(
085:                    IGeneticOperatorConstraint a_constraint);
086:
087:            IGeneticOperatorConstraint getGeneticOperatorConstraint();
088:
089:            /**
090:             * Retrieves a handler capable of comparing two instances of the given class.
091:             * @param a_obj the object to compare (maybe null)
092:             * @param a_classToCompareTo the class instances to compare (maybe null)
093:             * @return the handler found capable of comparing instances
094:             * of the given class, or null if none registered
095:             *
096:             * @author Klaus Meffert
097:             * @since 2.6
098:             */
099:
100:            ICompareToHandler getCompareToHandlerFor(Object a_obj,
101:                    Class a_classToCompareTo);
102:
103:            /**
104:             * Registers a compareTo-handler that could be retrieved by
105:             * getCompareToHandlerFor(Class).
106:             * @param a_compareToHandler the ICompareToHandler to register
107:             * @return index of the added handler, needed when removeCompareToHandler
108:             * will be called
109:             *
110:             * @author Klaus Meffert
111:             * @since 2.6
112:             */
113:
114:            int registerCompareToHandler(ICompareToHandler a_compareToHandler);
115:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.