diff --git a/src/main/java/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative.java b/src/main/java/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative.java index 9e4ccb0..d490de6 100644 --- a/src/main/java/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative.java +++ b/src/main/java/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative.java @@ -11,6 +11,7 @@ public class AquamapsNative extends AquamapsSuitable { @Override public ALG_PROPS[] getProperties() { ALG_PROPS [] p = {ALG_PROPS.SPECIES_VS_CSQUARE_FROM_DATABASE, ALG_PROPS.PHENOMENON_VS_PARALLEL_PHENOMENON}; +// ALG_PROPS [] p = {ALG_PROPS.SPECIES_VS_CSQUARE_FROM_DATABASE}; return p; } diff --git a/src/main/java/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsSuitable2050.java b/src/main/java/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsSuitable2050.java index 6bd6525..b01dfe8 100644 --- a/src/main/java/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsSuitable2050.java +++ b/src/main/java/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsSuitable2050.java @@ -14,7 +14,8 @@ public class AquamapsSuitable2050 extends AquamapsSuitable { @Override public ALG_PROPS[] getProperties() { - ALG_PROPS [] p = {ALG_PROPS.SPECIES_VS_CSQUARE_FROM_DATABASE}; +// ALG_PROPS [] p = {ALG_PROPS.SPECIES_VS_CSQUARE_FROM_DATABASE}; + ALG_PROPS [] p = {ALG_PROPS.SPECIES_VS_CSQUARE_FROM_DATABASE, ALG_PROPS.PHENOMENON_VS_PARALLEL_PHENOMENON}; return p; } diff --git a/src/main/java/org/gcube/dataanalysis/ecoengine/test/tablescomparisons/TablesComparison.java b/src/main/java/org/gcube/dataanalysis/ecoengine/test/tablescomparisons/TablesComparison.java new file mode 100644 index 0000000..af6ca10 --- /dev/null +++ b/src/main/java/org/gcube/dataanalysis/ecoengine/test/tablescomparisons/TablesComparison.java @@ -0,0 +1,179 @@ +package org.gcube.dataanalysis.ecoengine.test.tablescomparisons; + +import java.math.BigInteger; +import java.util.List; + +import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger; +import org.gcube.contentmanagement.lexicalmatcher.utils.DatabaseFactory; +import org.gcube.dataanalysis.ecoengine.configuration.AlgorithmConfiguration; +import org.hibernate.SessionFactory; + + +/** + * checks if two tables are equal + * checks numbers at the second decimal position + */ +public class TablesComparison { + + private BigInteger numOfElements; + private int errorCounter; + //connection setup + protected String LogFile = "ALog.properties"; + + //fundamental: set a the chunk csquaresNumber and the maximum number of chunks to take + int chunkSize = 7000; + static double Threshold = 0.01; + + //change this defaults to change comparison +// public String referenceTable = "hspec_native_test_parallel"; +// public String analyzedTable = "hspec_native_test_parallel2"; + public String referenceTable = "hspec_suitable2050_test_parallel_validation"; + public String analyzedTable = "hspec_suitable2050_test_parallel_validation2"; + + public String referenceCriteria = "speciesid,csquarecode"; + public String destinationCriteria = "speciesid,csquarecode"; +// public String referenceSelectedColumns = "speciesid,csquarecode,probability"; +// public String destinationSelectedColumns = "speciesid,csquarecode,probability"; + public String referenceSelectedColumns = "speciesid,csquarecode,probability,boundboxyn,faoareayn"; + public String destinationSelectedColumns = "speciesid,csquarecode,probability,boundboxyn,faoareayn"; + + //selection query + public static String selectElementsQuery = "select %1$s from %2$s order by %3$s"; + + //database connections + protected SessionFactory referencedbConnection; + protected SessionFactory destinationdbConnection; + + + //init connections + public TablesComparison(AlgorithmConfiguration config) throws Exception { + AnalysisLogger.setLogger(config.getConfigPath() + LogFile); + referencedbConnection = DatabaseFactory.initDBConnection(config.getConfigPath() + AlgorithmConfiguration.defaultConnectionFile,config); + AnalysisLogger.getLogger().debug("ReferenceDB initialized"); + destinationdbConnection = DatabaseFactory.initDBConnection(config.getConfigPath() + AlgorithmConfiguration.defaultConnectionFile,config); + AnalysisLogger.getLogger().debug("OriginalDB initialized"); + } + + //counts the elements in a table + public BigInteger countElements(String tablename, SessionFactory session) + { + BigInteger count = BigInteger.ZERO; + String countingQuery = "select count(*) from "+tablename; + AnalysisLogger.getLogger().debug("Getting DB elements by this query: "+countingQuery); + List result = DatabaseFactory.executeSQLQuery(countingQuery, session); + count = (BigInteger) result.get(0); + return count; + } + + + //takes a chunk of elements from the database, belonging to the set of 170 selected species + public List takeChunkOfElements(String tablename,String selectedColumns,String criteria, int limit, int offset, SessionFactory session) { + String query = String.format(selectElementsQuery,selectedColumns,tablename,criteria)+ " limit " + limit + " offset " + offset; + AnalysisLogger.getLogger().debug("takeChunkOfElements-> executing query on DB: " + query); + List results = DatabaseFactory.executeSQLQuery(query, session); + return results; + } + + //checks if a string is a number + public double isNumber(String element){ + + try{ + double d = Double.parseDouble(element); + return d; + }catch(Exception e){ + return -Double.MAX_VALUE; + } + } + + public static void main(String[] args) throws Exception { + String configPath = "./cfg/"; + AlgorithmConfiguration config = new AlgorithmConfiguration(); + config.setConfigPath(configPath); +// config.setDatabaseUserName("utente"); +// config.setDatabasePassword("d4science"); +// config.setDatabaseURL("jdbc:postgresql://146.48.87.169/testdb"); +// + TablesComparison ec = new TablesComparison(config); + long t0 = System.currentTimeMillis(); + ec.runTest(); + long t1 = System.currentTimeMillis(); + float difference = (t1-t0); + difference = difference /(float)(1000*60); + System.out.println("Elapsed time : "+difference+" min"); + } + + //runs the test between the tables + public boolean runTest() { + + long t0 = System.currentTimeMillis(); + + // take the number of elements + numOfElements = countElements(analyzedTable, destinationdbConnection); + + AnalysisLogger.getLogger().debug("Remote DB contains " + numOfElements + " elements."); + int maxNumber = numOfElements.intValue(); + int numOfChunks = maxNumber / chunkSize; + if ((maxNumber % chunkSize) > 0) { + numOfChunks++; + } + + int startIndex = 0; + // reset error counter + errorCounter = 0; + boolean equal = true; + for (int i = startIndex; i < numOfChunks; i++) { + int offset = i * chunkSize; + List referencechunk = takeChunkOfElements(referenceTable,referenceSelectedColumns,referenceCriteria, chunkSize, offset, referencedbConnection); + List destinationchunk = takeChunkOfElements(analyzedTable,destinationSelectedColumns,destinationCriteria, chunkSize, offset, destinationdbConnection); + int m = referencechunk.size(); + + for (int j=0;jThreshold){ + errorCounter++; + equal = false; + AnalysisLogger.getLogger().debug("ERROR - DISCREPANCY AT NUMBERS COMPARISON: "+refelem+" vs "+destelem); + } + } + else if (!refelem.equals(destelem)){ + errorCounter++; + equal = false; + AnalysisLogger.getLogger().debug("ERROR - DISCREPANCY AT STRING COMPARISON: "+refelem+" vs "+destelem); + } + if (!equal) + break; + } +// System.out.println(); + if (!equal) + break; + } + + if (!equal) + break; + else + AnalysisLogger.getLogger().debug("CHUNK NUMBER "+i+" OK!"); + } + + long t1 = System.currentTimeMillis(); + AnalysisLogger.getLogger().debug("ELAPSED TIME: " + (t1-t0) + " ms"); + + //close connections + referencedbConnection.close(); + destinationdbConnection.close(); + return equal; + } + + + + + +} diff --git a/target/apidocs/allclasses-frame.html b/target/apidocs/allclasses-frame.html index c533141..f20948b 100644 --- a/target/apidocs/allclasses-frame.html +++ b/target/apidocs/allclasses-frame.html @@ -2,13 +2,13 @@ - + All Classes (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/allclasses-noframe.html b/target/apidocs/allclasses-noframe.html index 0c2b0eb..97ef201 100644 --- a/target/apidocs/allclasses-noframe.html +++ b/target/apidocs/allclasses-noframe.html @@ -2,13 +2,13 @@ - + All Classes (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/constant-values.html b/target/apidocs/constant-values.html index 991d9d0..0d17e3a 100644 --- a/target/apidocs/constant-values.html +++ b/target/apidocs/constant-values.html @@ -2,13 +2,13 @@ - + Constant Field Values (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -338,6 +338,6 @@ org.gcube.*
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/deprecated-list.html b/target/apidocs/deprecated-list.html index da10c7d..cd44004 100644 --- a/target/apidocs/deprecated-list.html +++ b/target/apidocs/deprecated-list.html @@ -2,13 +2,13 @@ - + Deprecated List (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -142,6 +142,6 @@ function windowTitle()
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/help-doc.html b/target/apidocs/help-doc.html index 8be1dac..130fb66 100644 --- a/target/apidocs/help-doc.html +++ b/target/apidocs/help-doc.html @@ -2,13 +2,13 @@ - + API Help (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -219,6 +219,6 @@ This help file applies to API documentation generated using the standard doclet.
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/index-all.html b/target/apidocs/index-all.html index 70b71ee..34d5a27 100644 --- a/target/apidocs/index-all.html +++ b/target/apidocs/index-all.html @@ -2,13 +2,13 @@ - + Index (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -1320,6 +1320,9 @@ Variable in class org.gcube.dataanalysis.ecoengine.utils.DiscrepancyAnalysis - Class in org.gcube.dataanalysis.ecoengine.evaluation
 
DiscrepancyAnalysis() - Constructor for class org.gcube.dataanalysis.ecoengine.evaluation.DiscrepancyAnalysis
  +
displaySignal(double[], float) - +Static method in class org.gcube.dataanalysis.ecoengine.models.testing.FeedForwardNNFile +
 
DistanceCalculator - Class in org.gcube.contentmanagement.lexicalmatcher.utils
 
DistanceCalculator() - Constructor for class org.gcube.contentmanagement.lexicalmatcher.utils.DistanceCalculator
  @@ -4222,9 +4225,15 @@ Constructor for class org.gcube.dataanalysis.ecoengine.datatypes.InputTable(List<TableTemplates>, String, String) - Constructor for class org.gcube.dataanalysis.ecoengine.datatypes.InputTable
  +
insertBuffer(StringBuffer) - +Method in class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsMerger +
 
insertFromBuffer(String, String, StringBuffer) - Static method in class org.gcube.dataanalysis.ecoengine.utils.DatabaseUtils
  +
insertFromString(String, String, String) - +Static method in class org.gcube.dataanalysis.ecoengine.utils.DatabaseUtils +
 
insertIntoColumn(String, String, String, List<Object>) - Static method in class org.gcube.dataanalysis.ecoengine.utils.DatabaseUtils
  @@ -5168,6 +5177,9 @@ Static variable in class org.gcube.dataanalysis.ecoengine.configuration.ModelerT - Class in org.gcube.dataanalysis.ecoengine.user
 
ModelerT(ComputationalAgent, AlgorithmConfiguration) - Constructor for class org.gcube.dataanalysis.ecoengine.user.ModelerT
  +
modelFile - +Variable in class org.gcube.dataanalysis.ecoengine.spatialdistributions.BayesianDistribution +
 
ModelHSPEN - Class in org.gcube.dataanalysis.ecoengine.models
 
ModelHSPEN() - Constructor for class org.gcube.dataanalysis.ecoengine.models.ModelHSPEN
  @@ -7150,6 +7162,9 @@ Method in class org.gcube.dataanalysis.ecoengine.utils.takeChunks(int, int) - Static method in class org.gcube.dataanalysis.ecoengine.utils.Operations
  +
takeEssential(OccurrencePointsMerger.OccurrenceRecord) - +Method in class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsMerger +
 
takeFullRanges() - Method in class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsDuplicatesDeleter
  @@ -7289,6 +7304,9 @@ Constructor for class org.gcube.contentmanagement.lexicalmatcher.analysis.guesse
TimeSeriesChunksToTake - Variable in class org.gcube.contentmanagement.lexicalmatcher.analysis.core.LexicalEngineConfiguration
  +
timeseriesformat - +Variable in class org.gcube.contentmanagement.graphtools.plotting.graphs.TimeSeriesGraph +
 
TimeSeriesGraph - Class in org.gcube.contentmanagement.graphtools.plotting.graphs
 
TimeSeriesGraph(String) - Constructor for class org.gcube.contentmanagement.graphtools.plotting.graphs.TimeSeriesGraph
  @@ -7806,6 +7824,6 @@ Static variable in class org.gcube.contentmanagement.graphtools.utils. ecological-engine 1.6.0-SNAPSHOT API diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/GenericDBExtractor.html b/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/GenericDBExtractor.html index 65c1464..7f24ad1 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/GenericDBExtractor.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/GenericDBExtractor.html @@ -2,13 +2,13 @@ <!--NewPage--> <HTML> <HEAD> -<!-- Generated by javadoc (build 1.6.0_26) on Fri Dec 07 16:41:10 CET 2012 --> +<!-- Generated by javadoc (build 1.6.0_26) on Wed Feb 13 12:28:40 CET 2013 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> GenericDBExtractor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -236,6 +236,6 @@ DETAIL: FIELD | CONSTR | METHO
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/GenericStandaloneGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/GenericStandaloneGraph.html index ba9d5dc..3741a3a 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/GenericStandaloneGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/GenericStandaloneGraph.html @@ -2,13 +2,13 @@ - + GenericStandaloneGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -654,6 +654,6 @@ DETAIL: 
FIELD |  SamplesTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -544,6 +544,6 @@ DETAIL: FIELD |  Uses of Interface org.gcube.contentmanagement.graphtools.abstracts.GenericDBExtractor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of Uses of Class org.gcube.contentmanagement.graphtools.abstracts.GenericStandaloneGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -410,6 +410,6 @@ Uses of Uses of Class org.gcube.contentmanagement.graphtools.abstracts.SamplesTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -338,6 +338,6 @@ Uses of org.gcube.contentmanagement.graphtools.abstracts (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-summary.html index eaa12fa..746addf 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.abstracts (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -171,6 +171,6 @@ Package org.gcube.contentmanagement.graphtools.abstracts
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-tree.html index a3ffd18..ad61a2d 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.abstracts Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -171,6 +171,6 @@ Interface Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-use.html index 25a7c3f..a5693bd 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/abstracts/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.abstracts (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -273,6 +273,6 @@ Classes in
StatisticsGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -489,6 +489,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/core/class-use/StatisticsGenerator.html b/target/apidocs/org/gcube/contentmanagement/graphtools/core/class-use/StatisticsGenerator.html index f6a9e7c..e1f4761 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/core/class-use/StatisticsGenerator.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/core/class-use/StatisticsGenerator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.core.StatisticsGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.core.StatisticsGenerator
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/Filter.html b/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/Filter.html index daabbfb..4acd8f6 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/Filter.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/Filter.html @@ -2,13 +2,13 @@ - + Filter (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -423,6 +423,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/class-use/Filter.html b/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/class-use/Filter.html index c04bf0f..5cc5c95 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/class-use/Filter.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/class-use/Filter.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.core.filters.Filter (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -206,6 +206,6 @@ Uses of org.gcube.contentmanagement.graphtools.core.filters (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-summary.html index 81ec8f5..af91033 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.core.filters (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.contentmanagement.graphtools.core.filters
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-tree.html index 0b9c628..ef69a78 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.core.filters Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-use.html index 6cb2387..f1f1aab 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/core/filters/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.core.filters (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -166,6 +166,6 @@ Classes in
org.gcube.contentmanagement.graphtools.core (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-summary.html index 41e0d04..b74bcb7 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.core (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.contentmanagement.graphtools.core
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-tree.html index 214f093..00486dc 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.core Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-use.html index 8362229..e190d54 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/core/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.core (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.core
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/BigSamplesTable.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/BigSamplesTable.html index 1590677..b04e289 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/BigSamplesTable.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/BigSamplesTable.html @@ -2,13 +2,13 @@ - + BigSamplesTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -440,6 +440,6 @@ DETAIL: FIELD | 
CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/BigSparseTable.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/BigSparseTable.html index c79cb29..b6cd1dc 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/BigSparseTable.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/BigSparseTable.html @@ -2,13 +2,13 @@ - + BigSparseTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -311,6 +311,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/GraphSamplesTable.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/GraphSamplesTable.html index 946ab16..86305c0 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/GraphSamplesTable.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/GraphSamplesTable.html @@ -2,13 +2,13 @@ - + GraphSamplesTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -474,6 +474,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/BigSamplesTable.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/BigSamplesTable.html index 556eb71..1fa1e15 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/BigSamplesTable.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/BigSamplesTable.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.data.BigSamplesTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.data.BigSamplesTable
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/BigSparseTable.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/BigSparseTable.html index 55a4d47..bc3be64 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/BigSparseTable.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/BigSparseTable.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.data.BigSparseTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.data.BigSparseTable
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/GraphSamplesTable.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/GraphSamplesTable.html index 9122e3d..1947772 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/GraphSamplesTable.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/class-use/GraphSamplesTable.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.data.GraphSamplesTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.data.GraphSamplesTable
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/GraphConverter2D.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/GraphConverter2D.html index c6eaf73..01cc414 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/GraphConverter2D.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/GraphConverter2D.html @@ -2,13 +2,13 @@ - + GraphConverter2D (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -560,6 +560,6 @@ DETAIL: FIELD |  ImageTools (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -286,6 +286,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/class-use/GraphConverter2D.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/class-use/GraphConverter2D.html index 65c689e..c747264 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/class-use/GraphConverter2D.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/class-use/GraphConverter2D.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.data.conversions.GraphConverter2D (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.data.conversions.GraphConvert
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/class-use/ImageTools.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/class-use/ImageTools.html index 762f31e..26fc61e 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/class-use/ImageTools.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/class-use/ImageTools.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.data.conversions.ImageTools (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.data.conversions.ImageTools
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-frame.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-frame.html index b2d1843..26bd90d 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.data.conversions (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-summary.html index 08ef325..349da77 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.data.conversions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -157,6 +157,6 @@ Package org.gcube.contentmanagement.graphtools.data.conversions
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-tree.html index 56ab0fb..c5598f7 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.data.conversions Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-use.html index 525cab9..8b39b67 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/conversions/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.data.conversions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.data.conversions
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/CommonDBExtractor.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/CommonDBExtractor.html index f61e1b5..952c076 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/CommonDBExtractor.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/CommonDBExtractor.html @@ -2,13 +2,13 @@ - + CommonDBExtractor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -324,6 +324,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/class-use/CommonDBExtractor.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/class-use/CommonDBExtractor.html index 20af02a..1c33f30 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/class-use/CommonDBExtractor.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/class-use/CommonDBExtractor.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.data.databases.CommonDBExtractor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.data.databases.CommonDBExtrac
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-frame.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-frame.html index 538e307..6f40e86 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.data.databases (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-summary.html index 3862219..f327959 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.data.databases (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.contentmanagement.graphtools.data.databases
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-tree.html index bf61ade..4ddea69 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.data.databases Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -150,6 +150,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-use.html index 2755e8b..fc6da6e 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/databases/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.data.databases (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.data.databases
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-frame.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-frame.html index 577ff6e..c71d990 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.data (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-summary.html index 98596bd..ec759dd 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.data (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -161,6 +161,6 @@ Package org.gcube.contentmanagement.graphtools.data
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-tree.html index b7590c7..367c514 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.data Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -151,6 +151,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-use.html index a3bfd66..b6a348b 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/data/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.data (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.data
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfig.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfig.html index ec9d536..f9acb77 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfig.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfig.html @@ -2,13 +2,13 @@ - + ExampleExternalConfig (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfigPostGress.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfigPostGress.html index a7d799e..83f4064 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfigPostGress.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfigPostGress.html @@ -2,13 +2,13 @@ - + ExampleExternalConfigPostGress (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfigPostGressProd.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfigPostGressProd.html index 48d6b30..b17c280 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfigPostGressProd.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleExternalConfigPostGressProd.html @@ -2,13 +2,13 @@ - + ExampleExternalConfigPostGressProd (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleFilters.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleFilters.html index 2d5146c..45ccfcf 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleFilters.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleFilters.html @@ -2,13 +2,13 @@ - + ExampleFilters (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleFilters2.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleFilters2.html index bfa570c..24fbe48 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleFilters2.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleFilters2.html @@ -2,13 +2,13 @@ - + ExampleFilters2 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleMeanVariance.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleMeanVariance.html index cce4bab..c79ed01 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleMeanVariance.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleMeanVariance.html @@ -2,13 +2,13 @@ - + ExampleMeanVariance (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExamplePostGressLocalRadar.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExamplePostGressLocalRadar.html index e6bc409..73d49fd 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExamplePostGressLocalRadar.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExamplePostGressLocalRadar.html @@ -2,13 +2,13 @@ - + ExamplePostGressLocalRadar (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleStaticConfig.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleStaticConfig.html index bb2d7d5..3e6c4ef 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleStaticConfig.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleStaticConfig.html @@ -2,13 +2,13 @@ - + ExampleStaticConfig (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleStringGraphData.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleStringGraphData.html index edd70ea..802e934 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleStringGraphData.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/ExampleStringGraphData.html @@ -2,13 +2,13 @@ - + ExampleStringGraphData (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfig.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfig.html index a66a05d..0334e76 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfig.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfig.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.ExampleExternalConfig (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.ExampleExternalConfi
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfigPostGress.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfigPostGress.html index 84814e9..202df41 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfigPostGress.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfigPostGress.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.ExampleExternalConfigPostGress (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.ExampleExternalConfi
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfigPostGressProd.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfigPostGressProd.html index ddeb3aa..dec6b1e 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfigPostGressProd.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleExternalConfigPostGressProd.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.ExampleExternalConfigPostGressProd (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.ExampleExternalConfi
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleFilters.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleFilters.html index 31cc7ba..7a7a670 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleFilters.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleFilters.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.ExampleFilters (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.ExampleFilters
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleFilters2.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleFilters2.html index 3226812..b30edd6 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleFilters2.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleFilters2.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.ExampleFilters2 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.ExampleFilters2
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleMeanVariance.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleMeanVariance.html index 9cb960d..a51104c 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleMeanVariance.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleMeanVariance.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.ExampleMeanVariance (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.ExampleMeanVariance
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExamplePostGressLocalRadar.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExamplePostGressLocalRadar.html index ef7df03..25e659a 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExamplePostGressLocalRadar.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExamplePostGressLocalRadar.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.ExamplePostGressLocalRadar (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.ExamplePostGressLoca
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleStaticConfig.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleStaticConfig.html index 973bade..6354f58 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleStaticConfig.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleStaticConfig.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.ExampleStaticConfig (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.ExampleStaticConfig
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleStringGraphData.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleStringGraphData.html index a25ecf4..4e79e9d 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleStringGraphData.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/class-use/ExampleStringGraphData.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.ExampleStringGraphData (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.ExampleStringGraphDa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleDataBuiltGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleDataBuiltGraph.html index 9d17688..6e6c190 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleDataBuiltGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleDataBuiltGraph.html @@ -2,13 +2,13 @@ - + ExampleDataBuiltGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleDerivative.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleDerivative.html index 7298714..43ccc0e 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleDerivative.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleDerivative.html @@ -2,13 +2,13 @@ - + ExampleDerivative (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleHistogram.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleHistogram.html index c137336..5dcb315 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleHistogram.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleHistogram.html @@ -2,13 +2,13 @@ - + ExampleHistogram (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleImage.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleImage.html index d5cd0b4..25734a4 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleImage.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleImage.html @@ -2,13 +2,13 @@ - + ExampleImage (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -410,6 +410,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleLines.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleLines.html index 3fa2690..a263cff 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleLines.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleLines.html @@ -2,13 +2,13 @@ - + ExampleLines (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleNormalDistribution.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleNormalDistribution.html index 0717e2a..dd98c09 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleNormalDistribution.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleNormalDistribution.html @@ -2,13 +2,13 @@ - + ExampleNormalDistribution (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleNumericSeries.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleNumericSeries.html index f1c30ee..9a816be 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleNumericSeries.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleNumericSeries.html @@ -2,13 +2,13 @@ - + ExampleNumericSeries (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExamplePie.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExamplePie.html index 6b8482b..b784303 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExamplePie.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExamplePie.html @@ -2,13 +2,13 @@ - + ExamplePie (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleRadar.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleRadar.html index ee972f8..d0905a9 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleRadar.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleRadar.html @@ -2,13 +2,13 @@ - + ExampleRadar (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleScatter.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleScatter.html index e082acb..78e6e89 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleScatter.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleScatter.html @@ -2,13 +2,13 @@ - + ExampleScatter (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleTimeSeries.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleTimeSeries.html index 39a1939..5812d50 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleTimeSeries.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleTimeSeries.html @@ -2,13 +2,13 @@ - + ExampleTimeSeries (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleTimeSeries2.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleTimeSeries2.html index 621ecff..07f3439 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleTimeSeries2.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/ExampleTimeSeries2.html @@ -2,13 +2,13 @@ - + ExampleTimeSeries2 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleDataBuiltGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleDataBuiltGraph.html index 5124ee4..895b1d6 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleDataBuiltGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleDataBuiltGraph.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleDataBuiltGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleD
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleDerivative.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleDerivative.html index ec6635b..1cd68a9 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleDerivative.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleDerivative.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleDerivative (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleD
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleHistogram.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleHistogram.html index 9262dff..e5d830e 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleHistogram.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleHistogram.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleHistogram (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleH
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleImage.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleImage.html index 7dda578..3b42943 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleImage.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleImage.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleImage (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleI
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleLines.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleLines.html index 8e05fde..1a286f4 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleLines.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleLines.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleLines (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleNormalDistribution.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleNormalDistribution.html index c384246..e3b963e 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleNormalDistribution.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleNormalDistribution.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleNormalDistribution (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleN
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleNumericSeries.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleNumericSeries.html index f6a5d31..7f97d26 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleNumericSeries.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleNumericSeries.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleNumericSeries (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleN
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExamplePie.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExamplePie.html index 1c662a9..56b3169 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExamplePie.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExamplePie.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExamplePie (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleP
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleRadar.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleRadar.html index 935b723..76ed48f 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleRadar.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleRadar.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleRadar (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleR
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleScatter.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleScatter.html index e7d50d3..58d78a7 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleScatter.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleScatter.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleScatter (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleS
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleTimeSeries.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleTimeSeries.html index aa2b81e..d9b82e8 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleTimeSeries.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleTimeSeries.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleTimeSeries (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleT
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleTimeSeries2.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleTimeSeries2.html index 2a07f63..ba943f4 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleTimeSeries2.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/class-use/ExampleTimeSeries2.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleTimeSeries2 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes.ExampleT
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-frame.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-frame.html index 62eb2a7..6886657 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.examples.graphsTypes (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-summary.html index 4a36d67..9606666 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.examples.graphsTypes (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -197,6 +197,6 @@ Package org.gcube.contentmanagement.graphtools.examples.graphsTypes
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-tree.html index 582258c..01680be 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.examples.graphsTypes Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -159,6 +159,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-use.html index 02a3c08..992f9b8 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/graphsTypes/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.examples.graphsTypes (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples.graphsTypes
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-frame.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-frame.html index 2eb16fa..16963bc 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.examples (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-summary.html index 14f2251..c96120b 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.examples (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -185,6 +185,6 @@ Package org.gcube.contentmanagement.graphtools.examples
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-tree.html index 1ab1bac..40c2356 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.examples Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-use.html index 48cab15..8588042 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/examples/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.examples (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.examples
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/PieChartDemo1.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/PieChartDemo1.html index 9e178bc..a90949d 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/PieChartDemo1.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/PieChartDemo1.html @@ -2,13 +2,13 @@ - + PieChartDemo1 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -468,6 +468,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/SpiderWebDemo1.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/SpiderWebDemo1.html index adb98d2..47bbf97 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/SpiderWebDemo1.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/SpiderWebDemo1.html @@ -2,13 +2,13 @@ - + SpiderWebDemo1 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -468,6 +468,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/SpiderWebPlot.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/SpiderWebPlot.html index b6db052..2b3d828 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/SpiderWebPlot.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/SpiderWebPlot.html @@ -2,13 +2,13 @@ - + SpiderWebPlot (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -2246,6 +2246,6 @@ DETAIL: FIELD |  TestWeb (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -267,6 +267,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/TimeSeriesChartDemo1.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/TimeSeriesChartDemo1.html index 6dc318f..a030765 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/TimeSeriesChartDemo1.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/TimeSeriesChartDemo1.html @@ -2,13 +2,13 @@ - + TimeSeriesChartDemo1 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -471,6 +471,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/PieChartDemo1.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/PieChartDemo1.html index ed6df05..f299423 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/PieChartDemo1.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/PieChartDemo1.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.demo.PieChartDemo1 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.demo.PieChartDemo1
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/SpiderWebDemo1.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/SpiderWebDemo1.html index 24d634d..dfb11a2 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/SpiderWebDemo1.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/SpiderWebDemo1.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.demo.SpiderWebDemo1 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.demo.SpiderWebDemo1
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/SpiderWebPlot.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/SpiderWebPlot.html index f2cfecd..7a87bdc 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/SpiderWebPlot.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/SpiderWebPlot.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.demo.SpiderWebPlot (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.demo.SpiderWebPlot
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/TestWeb.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/TestWeb.html index 429c787..5fe1e5e 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/TestWeb.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/TestWeb.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.demo.TestWeb (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.demo.TestWeb
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/TimeSeriesChartDemo1.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/TimeSeriesChartDemo1.html index 7db8804..62a8f36 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/TimeSeriesChartDemo1.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/class-use/TimeSeriesChartDemo1.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.demo.TimeSeriesChartDemo1 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.demo.TimeSeriesChart
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-frame.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-frame.html index c65c90d..f0d330a 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.plotting.demo (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-summary.html index f89ae0e..0da2e54 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.plotting.demo (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -172,6 +172,6 @@ Package org.gcube.contentmanagement.graphtools.plotting.demo
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-tree.html index 9fa0680..29acd47 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.plotting.demo Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -170,6 +170,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-use.html index bed180c..b13ac8a 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/demo/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.plotting.demo (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.demo
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/GaussianDistributionGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/GaussianDistributionGraph.html index e1e19bf..af79ef2 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/GaussianDistributionGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/GaussianDistributionGraph.html @@ -2,13 +2,13 @@ - + GaussianDistributionGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -542,6 +542,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/HistogramGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/HistogramGraph.html index d695e46..d4322fb 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/HistogramGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/HistogramGraph.html @@ -2,13 +2,13 @@ - + HistogramGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -501,6 +501,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/LineGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/LineGraph.html index 70683d4..b087979 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/LineGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/LineGraph.html @@ -2,13 +2,13 @@ - + LineGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -501,6 +501,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/NumericSeriesGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/NumericSeriesGraph.html index 4902e5c..9e324e6 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/NumericSeriesGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/NumericSeriesGraph.html @@ -2,13 +2,13 @@ - + NumericSeriesGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -523,6 +523,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/PieGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/PieGraph.html index 1da26ac..b2184a4 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/PieGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/PieGraph.html @@ -2,13 +2,13 @@ - + PieGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -539,6 +539,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/RadarGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/RadarGraph.html index acc0c90..ba7f4a2 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/RadarGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/RadarGraph.html @@ -2,13 +2,13 @@ - + RadarGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -520,6 +520,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/ScatterGraphGeneric.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/ScatterGraphGeneric.html index b32057e..093e62d 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/ScatterGraphGeneric.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/ScatterGraphGeneric.html @@ -2,13 +2,13 @@ - + ScatterGraphGeneric (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -501,6 +501,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/ScatterGraphNumeric.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/ScatterGraphNumeric.html index c6ff5f1..b5ee6f4 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/ScatterGraphNumeric.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/ScatterGraphNumeric.html @@ -2,13 +2,13 @@ - + ScatterGraphNumeric (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -523,6 +523,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/TimeSeriesGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/TimeSeriesGraph.html index 5d6d5bb..c80e7b9 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/TimeSeriesGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/TimeSeriesGraph.html @@ -2,13 +2,13 @@ - + TimeSeriesGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -77,9 +77,9 @@ function windowTitle() - SUMMARY: NESTED | FIELD | CONSTR | METHOD + SUMMARY: NESTED | FIELD | CONSTR | METHOD -DETAIL: FIELD | CONSTR | METHOD +DETAIL: FIELD | CONSTR | METHOD @@ -184,6 +184,14 @@ Class TimeSeriesGraph Field Summary + + + String +timeseriesformat + +
+            +   @@ -381,6 +389,25 @@ Class TimeSeriesGraph  

+ + + +

+ + + +
+Field Detail
+ +

+timeseriesformat

+
+public String timeseriesformat
+
+
+
+
+ @@ -514,15 +541,15 @@ protected - SUMMARY: NESTED | FIELD | CONSTR | METHOD + SUMMARY: NESTED | FIELD | CONSTR | METHOD -DETAIL: FIELD | CONSTR | METHOD +DETAIL: FIELD | CONSTR | METHOD
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/TransectLineGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/TransectLineGraph.html index e5a3afe..edeae40 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/TransectLineGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/TransectLineGraph.html @@ -2,13 +2,13 @@ - + TransectLineGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -501,6 +501,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/GaussianDistributionGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/GaussianDistributionGraph.html index 526f4ab..b277e82 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/GaussianDistributionGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/GaussianDistributionGraph.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.graphs.GaussianDistributionGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.graphs.GaussianDistr
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/HistogramGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/HistogramGraph.html index 9db4f2f..b91d5ad 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/HistogramGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/HistogramGraph.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.graphs.HistogramGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.graphs.HistogramGrap
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/LineGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/LineGraph.html index 3c6d463..742101f 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/LineGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/LineGraph.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.graphs.LineGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.graphs.LineGraph
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/NumericSeriesGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/NumericSeriesGraph.html index 3ddf7e6..a74827a 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/NumericSeriesGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/NumericSeriesGraph.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.graphs.NumericSeriesGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.graphs.NumericSeries
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/PieGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/PieGraph.html index c4ac532..2bfac25 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/PieGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/PieGraph.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.graphs.PieGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.graphs.PieGraph
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/RadarGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/RadarGraph.html index 4d3cf95..3d4562b 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/RadarGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/RadarGraph.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.graphs.RadarGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.graphs.RadarGraph
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/ScatterGraphGeneric.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/ScatterGraphGeneric.html index 847a085..fe2de6f 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/ScatterGraphGeneric.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/ScatterGraphGeneric.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.graphs.ScatterGraphGeneric (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.graphs.ScatterGraphG
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/ScatterGraphNumeric.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/ScatterGraphNumeric.html index 2a692f0..c9572d0 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/ScatterGraphNumeric.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/ScatterGraphNumeric.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.graphs.ScatterGraphNumeric (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.graphs.ScatterGraphN
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/TimeSeriesGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/TimeSeriesGraph.html index 53810df..43c2ffa 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/TimeSeriesGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/TimeSeriesGraph.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.graphs.TimeSeriesGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.graphs.TimeSeriesGra
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/TransectLineGraph.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/TransectLineGraph.html index 0f763a9..ef74d58 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/TransectLineGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/class-use/TransectLineGraph.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.plotting.graphs.TransectLineGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.graphs.TransectLineG
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-frame.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-frame.html index 612a550..acad4d4 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.plotting.graphs (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-summary.html index 2dfbefc..e7a2fcb 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.plotting.graphs (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -189,6 +189,6 @@ Package org.gcube.contentmanagement.graphtools.plotting.graphs
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-tree.html index 1afe6ac..dd12155 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.plotting.graphs Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -168,6 +168,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-use.html index cc7a853..4e785c6 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/plotting/graphs/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.plotting.graphs (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.plotting.graphs
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/RegressionTestAllGraphs.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/RegressionTestAllGraphs.html index db680f7..7f95fd5 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/RegressionTestAllGraphs.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/RegressionTestAllGraphs.html @@ -2,13 +2,13 @@ - + RegressionTestAllGraphs (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/class-use/RegressionTestAllGraphs.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/class-use/RegressionTestAllGraphs.html index 2d72f9e..57235f6 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/class-use/RegressionTestAllGraphs.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/class-use/RegressionTestAllGraphs.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.tests.RegressionTestAllGraphs (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.RegressionTestAllGraphs
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/class-use/testConnections.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/class-use/testConnections.html index 676e8d5..e13f5e7 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/class-use/testConnections.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/class-use/testConnections.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.tests.testConnections (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.testConnections
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleDerivative.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleDerivative.html index 1197ce7..1653c0e 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleDerivative.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleDerivative.html @@ -2,13 +2,13 @@ - + ExampleDerivative (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleMathFunctions.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleMathFunctions.html index 0bfa238..b362a38 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleMathFunctions.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleMathFunctions.html @@ -2,13 +2,13 @@ - + ExampleMathFunctions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -270,6 +270,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleOperatorsInvoking.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleOperatorsInvoking.html index bcd1c52..ec79218 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleOperatorsInvoking.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleOperatorsInvoking.html @@ -2,13 +2,13 @@ - + ExampleOperatorsInvoking (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleRMUsage.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleRMUsage.html index 8451fb2..4cbe10c 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleRMUsage.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleRMUsage.html @@ -2,13 +2,13 @@ - + ExampleRMUsage (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -286,6 +286,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleUserSampleSet.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleUserSampleSet.html index 1d892bd..ae66170 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleUserSampleSet.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/ExampleUserSampleSet.html @@ -2,13 +2,13 @@ - + ExampleUserSampleSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TestConverters.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TestConverters.html index c537d37..022d1f3 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TestConverters.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TestConverters.html @@ -2,13 +2,13 @@ - + TestConverters (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -273,6 +273,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TestDBExtractor.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TestDBExtractor.html index 4a0f247..7e7e7bd 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TestDBExtractor.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TestDBExtractor.html @@ -2,13 +2,13 @@ - + TestDBExtractor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TextTest.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TextTest.html index 73329aa..86e0479 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TextTest.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/TextTest.html @@ -2,13 +2,13 @@ - + TextTest (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleDerivative.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleDerivative.html index e8e668c..dd11df7 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleDerivative.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleDerivative.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.tests.old.ExampleDerivative (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.old.ExampleDerivative
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleMathFunctions.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleMathFunctions.html index 1c91e7c..cdd9a47 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleMathFunctions.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleMathFunctions.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.tests.old.ExampleMathFunctions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.old.ExampleMathFunction
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleOperatorsInvoking.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleOperatorsInvoking.html index 05cb802..c3914cf 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleOperatorsInvoking.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleOperatorsInvoking.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.tests.old.ExampleOperatorsInvoking (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.old.ExampleOperatorsInv
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleRMUsage.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleRMUsage.html index 951dfa4..ba1cf8d 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleRMUsage.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleRMUsage.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.tests.old.ExampleRMUsage (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.old.ExampleRMUsage
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleUserSampleSet.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleUserSampleSet.html index 24d6e05..f8fc651 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleUserSampleSet.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/ExampleUserSampleSet.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.tests.old.ExampleUserSampleSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.old.ExampleUserSampleSe
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TestConverters.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TestConverters.html index 8ef7bbd..ef281ff 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TestConverters.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TestConverters.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.tests.old.TestConverters (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.old.TestConverters
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TestDBExtractor.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TestDBExtractor.html index 21c1f42..d2c1028 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TestDBExtractor.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TestDBExtractor.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.tests.old.TestDBExtractor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.old.TestDBExtractor
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TextTest.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TextTest.html index 112a958..7beba2a 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TextTest.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/class-use/TextTest.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.tests.old.TextTest (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.old.TextTest
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-frame.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-frame.html index 1453fc6..4964992 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.tests.old (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-summary.html index 909c880..732b39b 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.tests.old (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -181,6 +181,6 @@ Package org.gcube.contentmanagement.graphtools.tests.old
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-tree.html index 9c96ecc..1d22948 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.tests.old Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-use.html index 99249e9..7a51ffd 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/old/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.tests.old (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.old
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-frame.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-frame.html index 7561efb..c85c2fa 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.tests (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-summary.html index fe73add..8ca1bc8 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.tests (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -157,6 +157,6 @@ Package org.gcube.contentmanagement.graphtools.tests
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-tree.html index a83aeaf..1973d72 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.tests Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-use.html index 9c003a9..21b609b 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.tests (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/ExampleStringGraphData.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/ExampleStringGraphData.html index 2d8a1c1..c835950 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/ExampleStringGraphData.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/ExampleStringGraphData.html @@ -2,13 +2,13 @@ - + ExampleStringGraphData (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/class-use/ExampleStringGraphData.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/class-use/ExampleStringGraphData.html index 7a0e783..f57e816 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/class-use/ExampleStringGraphData.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/class-use/ExampleStringGraphData.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.tests.show.ExampleStringGraphData (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.show.ExampleStringGraph
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-frame.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-frame.html index 68c0981..89c4a94 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.tests.show (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-summary.html index 1c43540..5f9165b 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.tests.show (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.contentmanagement.graphtools.tests.show
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-tree.html index 7f69920..7c3eccf 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.tests.show Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-use.html index 2f63693..0aa93fb 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/show/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.tests.show (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.tests.show
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/testConnections.html b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/testConnections.html index e69bb2b..8881823 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/tests/testConnections.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/tests/testConnections.html @@ -2,13 +2,13 @@ - + testConnections (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/DateGuesser.html b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/DateGuesser.html index c4dd852..639e4c7 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/DateGuesser.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/DateGuesser.html @@ -2,13 +2,13 @@ - + DateGuesser (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -419,6 +419,6 @@ DETAIL: FIELD |  HttpRequest (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -453,6 +453,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/MathFunctions.html b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/MathFunctions.html index 1a01bbd..60e8dff 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/MathFunctions.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/MathFunctions.html @@ -2,13 +2,13 @@ - + MathFunctions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -519,6 +519,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/DateGuesser.html b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/DateGuesser.html index 4dc9170..cbe9c3e 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/DateGuesser.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/DateGuesser.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.utils.DateGuesser (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.utils.DateGuesser
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/HttpRequest.html b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/HttpRequest.html index edc0248..f63a888 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/HttpRequest.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/HttpRequest.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.utils.HttpRequest (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.utils.HttpRequest
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/MathFunctions.html b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/MathFunctions.html index 2b9a2b0..0862e59 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/MathFunctions.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/class-use/MathFunctions.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.graphtools.utils.MathFunctions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.utils.MathFunctions
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-frame.html b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-frame.html index 627b9ad..bb4b888 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.utils (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-summary.html b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-summary.html index e1d0abb..115cb9e 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.utils (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -161,6 +161,6 @@ Package org.gcube.contentmanagement.graphtools.utils
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-tree.html b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-tree.html index 2a5fe9c..32c062d 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.graphtools.utils Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-use.html b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-use.html index 61a0236..1964904 100644 --- a/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/graphtools/utils/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.graphtools.utils (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.graphtools.utils
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/DataTypeRecognizer.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/DataTypeRecognizer.html index fa8c050..d0c5373 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/DataTypeRecognizer.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/DataTypeRecognizer.html @@ -2,13 +2,13 @@ - + DataTypeRecognizer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -308,6 +308,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/Engine.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/Engine.html index 40f4f17..9131bb2 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/Engine.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/Engine.html @@ -2,13 +2,13 @@ - + Engine (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -494,6 +494,6 @@ DETAIL: FIELD |  EngineConfiguration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -1385,6 +1385,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/LexicalEngineConfiguration.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/LexicalEngineConfiguration.html index d0aaa69..15106d9 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/LexicalEngineConfiguration.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/LexicalEngineConfiguration.html @@ -2,13 +2,13 @@ - + LexicalEngineConfiguration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -1523,6 +1523,6 @@ DETAIL: FIELD |  Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.core.DataTypeRecognizer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.core.DataTypeRec
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/class-use/Engine.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/class-use/Engine.html index a6775ee..07865f9 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/class-use/Engine.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/class-use/Engine.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.core.Engine (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -304,6 +304,6 @@ Uses of
Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.core.EngineConfiguration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.core.EngineConfi
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/class-use/LexicalEngineConfiguration.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/class-use/LexicalEngineConfiguration.html index 2831884..900903d 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/class-use/LexicalEngineConfiguration.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/class-use/LexicalEngineConfiguration.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.core.LexicalEngineConfiguration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -648,6 +648,6 @@ Uses of
org.gcube.contentmanagement.lexicalmatcher.analysis.core (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-summary.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-summary.html index e630982..66eaaf8 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.core (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -165,6 +165,6 @@ Package org.gcube.contentmanagement.lexicalmatcher.analysis.core
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-tree.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-tree.html index 3d382b3..0069163 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.core Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -151,6 +151,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-use.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-use.html index ae4da62..7fb75f6 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/core/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.lexicalmatcher.analysis.core (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -286,6 +286,6 @@ Classes in
Example1_Species (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example2_Area.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example2_Area.html index 1ecaaba..64d184e 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example2_Area.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example2_Area.html @@ -2,13 +2,13 @@ - + Example2_Area (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example3_SingleMatchShark.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example3_SingleMatchShark.html index e53b481..1c539ac 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example3_SingleMatchShark.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example3_SingleMatchShark.html @@ -2,13 +2,13 @@ - + Example3_SingleMatchShark (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example4_SingleMatchMitella.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example4_SingleMatchMitella.html index 46e304d..c11512a 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example4_SingleMatchMitella.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example4_SingleMatchMitella.html @@ -2,13 +2,13 @@ - + Example4_SingleMatchMitella (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example5_SingleMatchMitella.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example5_SingleMatchMitella.html index 424dabe..e54d12a 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example5_SingleMatchMitella.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/Example5_SingleMatchMitella.html @@ -2,13 +2,13 @@ - + Example5_SingleMatchMitella (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/ExampleGuessingExternalCfg.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/ExampleGuessingExternalCfg.html index 929f661..05eb470 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/ExampleGuessingExternalCfg.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/ExampleGuessingExternalCfg.html @@ -2,13 +2,13 @@ - + ExampleGuessingExternalCfg (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example1_Species.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example1_Species.html index 0184a34..389bcb2 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example1_Species.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example1_Species.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.examples.Example1_Species (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.examples.Example
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example2_Area.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example2_Area.html index 620751a..06b5126 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example2_Area.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example2_Area.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.examples.Example2_Area (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.examples.Example
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example3_SingleMatchShark.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example3_SingleMatchShark.html index cf31490..091c59e 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example3_SingleMatchShark.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example3_SingleMatchShark.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.examples.Example3_SingleMatchShark (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.examples.Example
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example4_SingleMatchMitella.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example4_SingleMatchMitella.html index 8738286..e894903 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example4_SingleMatchMitella.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example4_SingleMatchMitella.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.examples.Example4_SingleMatchMitella (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.examples.Example
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example5_SingleMatchMitella.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example5_SingleMatchMitella.html index c3f8cca..bd4647c 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example5_SingleMatchMitella.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/Example5_SingleMatchMitella.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.examples.Example5_SingleMatchMitella (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.examples.Example
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/ExampleGuessingExternalCfg.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/ExampleGuessingExternalCfg.html index 4d733d2..6d5c0ec 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/ExampleGuessingExternalCfg.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/class-use/ExampleGuessingExternalCfg.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.examples.ExampleGuessingExternalCfg (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.examples.Example
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-frame.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-frame.html index 0e9f9b3..fb4462c 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.examples (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-summary.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-summary.html index c994f01..7b72c10 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.examples (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -173,6 +173,6 @@ Package org.gcube.contentmanagement.lexicalmatcher.analysis.examples
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-tree.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-tree.html index 895d855..b58b341 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.examples Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-use.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-use.html index 9e6a5cc..560e744 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/examples/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.lexicalmatcher.analysis.examples (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.examples
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/Category.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/Category.html index 1aab3ac..a9235cf 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/Category.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/Category.html @@ -2,13 +2,13 @@ - + Category (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -502,6 +502,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryOrderedList.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryOrderedList.html index 54553c4..54f2614 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryOrderedList.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryOrderedList.html @@ -2,13 +2,13 @@ - + CategoryOrderedList (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -362,6 +362,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryScores.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryScores.html index 1f84dd8..8208ff4 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryScores.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryScores.html @@ -2,13 +2,13 @@ - + CategoryScores (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -427,6 +427,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryScoresOld.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryScoresOld.html index ad8711e..1ea923e 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryScoresOld.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/CategoryScoresOld.html @@ -2,13 +2,13 @@ - + CategoryScoresOld (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -326,6 +326,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/DBObjectTranslator.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/DBObjectTranslator.html index 32a026c..521d673 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/DBObjectTranslator.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/DBObjectTranslator.html @@ -2,13 +2,13 @@ - + DBObjectTranslator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -613,6 +613,6 @@ DETAIL: FIELD |  Entry (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -331,6 +331,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/RelationEdge.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/RelationEdge.html index 84c3063..e66c508 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/RelationEdge.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/RelationEdge.html @@ -2,13 +2,13 @@ - + RelationEdge (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -464,6 +464,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/SingleResult.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/SingleResult.html index a75cbc7..a7a482d 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/SingleResult.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/SingleResult.html @@ -2,13 +2,13 @@ - + SingleResult (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -468,6 +468,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/TSObjectTransformer.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/TSObjectTransformer.html index c12f5fb..bbf8356 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/TSObjectTransformer.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/TSObjectTransformer.html @@ -2,13 +2,13 @@ - + TSObjectTransformer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -311,6 +311,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/class-use/Category.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/class-use/Category.html index 0a79420..947fe2a 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/class-use/Category.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/class-use/Category.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data.Category (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -208,6 +208,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data.CategoryOrderedList (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -237,6 +237,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data.CategoryScores (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -245,6 +245,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data.CategoryScoresOld (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data.Cat
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/class-use/DBObjectTranslator.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/class-use/DBObjectTranslator.html index 77b1023..e22c104 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/class-use/DBObjectTranslator.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/class-use/DBObjectTranslator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data.DBObjectTranslator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -195,6 +195,6 @@ Uses of
Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data.Entry (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -208,6 +208,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data.RelationEdge (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data.SingleResult (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -274,6 +274,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data.TSObjectTransformer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data.TSO
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-frame.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-frame.html index 8627faa..2fa0fca 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-summary.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-summary.html index cdc283d..7c5f557 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -185,6 +185,6 @@ Package org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-tree.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-tree.html index 84c7d32..6bf37e4 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -150,6 +150,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-use.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-use.html index 6e65d0c..c41feb6 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/data/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.data (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -277,6 +277,6 @@ Classes in
Reference (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -398,6 +398,6 @@ DETAIL: FIELD | CONSTR | METHO
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/class-use/Reference.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/class-use/Reference.html index 621b0d6..0d48a17 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/class-use/Reference.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/class-use/Reference.html @@ -2,13 +2,13 @@ - + Uses of Interface org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.interfaces.Reference (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -261,6 +261,6 @@ Uses of
org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.interfaces (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-summary.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-summary.html index 7c5af03..a69d0ab 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.interfaces (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.interfaces
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-tree.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-tree.html index a7ff701..08a1c79 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.interfaces Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -147,6 +147,6 @@ Interface Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-use.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-use.html index 4d2bb96..86cd641 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/interfaces/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.interfaces (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -185,6 +185,6 @@ Classes in
Chunk (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -259,6 +259,6 @@ DETAIL: FIELD |  ChunkSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -677,6 +677,6 @@ DETAIL: FIELD |  ReferenceChunk (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -316,6 +316,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/ReferenceChunkSet.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/ReferenceChunkSet.html index bd83fa2..01da742 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/ReferenceChunkSet.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/ReferenceChunkSet.html @@ -2,13 +2,13 @@ - + ReferenceChunkSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -350,6 +350,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/SetOfReferenceChunkSet.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/SetOfReferenceChunkSet.html index 04a0ab3..1a32bbb 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/SetOfReferenceChunkSet.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/SetOfReferenceChunkSet.html @@ -2,13 +2,13 @@ - + SetOfReferenceChunkSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -252,6 +252,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/SingletonChunkSet.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/SingletonChunkSet.html index 38259a5..6ae4b5f 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/SingletonChunkSet.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/SingletonChunkSet.html @@ -2,13 +2,13 @@ - + SingletonChunkSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -313,6 +313,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/TimeSeriesChunk.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/TimeSeriesChunk.html index 9a9a07a..3e73a30 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/TimeSeriesChunk.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/TimeSeriesChunk.html @@ -2,13 +2,13 @@ - + TimeSeriesChunk (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -439,6 +439,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/TimeSeriesChunkSet.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/TimeSeriesChunkSet.html index 0756d8b..05845de 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/TimeSeriesChunkSet.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/TimeSeriesChunkSet.html @@ -2,13 +2,13 @@ - + TimeSeriesChunkSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -319,6 +319,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/Chunk.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/Chunk.html index 428c616..d958b37 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/Chunk.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/Chunk.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks.Chunk (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -184,6 +184,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks.ChunkSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -192,6 +192,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks.ReferenceChunk (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -203,6 +203,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks.ReferenceChunkSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks.SetOfReferenceChunkSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStru
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/SingletonChunkSet.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/SingletonChunkSet.html index a86184e..b7c4372 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/SingletonChunkSet.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/SingletonChunkSet.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks.SingletonChunkSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStru
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/TimeSeriesChunk.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/TimeSeriesChunk.html index e4466fb..85b57fd 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/TimeSeriesChunk.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/class-use/TimeSeriesChunk.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks.TimeSeriesChunk (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -184,6 +184,6 @@ Uses of
Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks.TimeSeriesChunkSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStru
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-frame.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-frame.html index 93a018d..7684796 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-summary.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-summary.html index ca91fdd..6ad302c 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -181,6 +181,6 @@ Package org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructur
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-tree.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-tree.html index 868e8ae..afde74c 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-use.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-use.html index 04c8803..f58368a 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/chunks/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.chunks (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -190,6 +190,6 @@ Classes in
CustomListenableDirectedWeightedGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -350,6 +350,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/CustomWeightedEdge.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/CustomWeightedEdge.html index 76bc86b..8790457 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/CustomWeightedEdge.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/CustomWeightedEdge.html @@ -2,13 +2,13 @@ - + CustomWeightedEdge (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -316,6 +316,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/CustomWeightedVertex.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/CustomWeightedVertex.html index 89fb350..caf7407 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/CustomWeightedVertex.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/CustomWeightedVertex.html @@ -2,13 +2,13 @@ - + CustomWeightedVertex (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -286,6 +286,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/GraphDisplayer.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/GraphDisplayer.html index 2e68793..1bc94b8 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/GraphDisplayer.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/GraphDisplayer.html @@ -2,13 +2,13 @@ - + GraphDisplayer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -643,6 +643,6 @@ DETAIL: FIELD |  GraphFramer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -433,6 +433,6 @@ DETAIL: FIELD |  GraphGeneratorApplet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -401,6 +401,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/RelationEdge.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/RelationEdge.html index c54c2b3..bbecc96 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/RelationEdge.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/RelationEdge.html @@ -2,13 +2,13 @@ - + RelationEdge (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -489,6 +489,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/TreeExtractor.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/TreeExtractor.html index de3cc32..d5825a3 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/TreeExtractor.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/TreeExtractor.html @@ -2,13 +2,13 @@ - + TreeExtractor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -267,6 +267,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomListenableDirectedWeightedGraph.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomListenableDirectedWeightedGraph.html index 8e79df2..925c285 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomListenableDirectedWeightedGraph.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomListenableDirectedWeightedGraph.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph.CustomListenableDirectedWeightedGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStru
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomWeightedEdge.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomWeightedEdge.html index 20b7115..1e40165 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomWeightedEdge.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomWeightedEdge.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph.CustomWeightedEdge (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStru
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomWeightedVertex.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomWeightedVertex.html index 60172ce..47f25b6 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomWeightedVertex.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/CustomWeightedVertex.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph.CustomWeightedVertex (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph.GraphDisplayer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph.GraphFramer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStru
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/GraphGeneratorApplet.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/GraphGeneratorApplet.html index e8337ad..f107ceb 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/GraphGeneratorApplet.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/GraphGeneratorApplet.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph.GraphGeneratorApplet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStru
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/RelationEdge.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/RelationEdge.html index 7ad21c2..5965a2e 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/RelationEdge.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/RelationEdge.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph.RelationEdge (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStru
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/TreeExtractor.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/TreeExtractor.html index 52be87a..98c79c2 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/TreeExtractor.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/class-use/TreeExtractor.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph.TreeExtractor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStru
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-frame.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-frame.html index e897d07..c580cd5 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-summary.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-summary.html index 15bde11..629d9e8 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -181,6 +181,6 @@ Package org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructur
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-tree.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-tree.html index 406d628..320580f 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -187,6 +187,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-use.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-use.html index ae81fc5..5c514a1 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/guesser/treeStructure/graph/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.lexicalmatcher.analysis.guesser.treeStructure.graph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -172,6 +172,6 @@ Classes in
CategoryGuesser (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -771,6 +771,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/StarGraphExtraction.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/StarGraphExtraction.html index 9b030db..911cd01 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/StarGraphExtraction.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/StarGraphExtraction.html @@ -2,13 +2,13 @@ - + StarGraphExtraction (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -270,6 +270,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/class-use/CategoryGuesser.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/class-use/CategoryGuesser.html index d9e5645..94970ed 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/class-use/CategoryGuesser.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/class-use/CategoryGuesser.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.run.CategoryGuesser (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -197,6 +197,6 @@ Uses of Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.run.StarGraphExtraction (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.run.StarGraphExt
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-frame.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-frame.html index aace0a4..9d5653a 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.run (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-summary.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-summary.html index 85fbdb7..9c30582 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.run (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -157,6 +157,6 @@ Package org.gcube.contentmanagement.lexicalmatcher.analysis.run
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-tree.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-tree.html index ea5a9b0..c3fdcdc 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.run Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-use.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-use.html index 2b94052..f9a43e9 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/run/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.lexicalmatcher.analysis.run (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -166,6 +166,6 @@ Classes in
TestExternalCfgProduction (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/TestSingleExternalCfgProduction.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/TestSingleExternalCfgProduction.html index 8400391..4840ce6 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/TestSingleExternalCfgProduction.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/TestSingleExternalCfgProduction.html @@ -2,13 +2,13 @@ - + TestSingleExternalCfgProduction (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/class-use/TestExternalCfgProduction.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/class-use/TestExternalCfgProduction.html index de7b4c6..0ef4a6c 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/class-use/TestExternalCfgProduction.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/class-use/TestExternalCfgProduction.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.TestExternalCfgProduction (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.TestExterna
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/class-use/TestSingleExternalCfgProduction.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/class-use/TestSingleExternalCfgProduction.html index 0a06b28..9d55fb2 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/class-use/TestSingleExternalCfgProduction.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/class-use/TestSingleExternalCfgProduction.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.TestSingleExternalCfgProduction (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.TestSingleE
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest1.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest1.html index 6cdb749..0f6165d 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest1.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest1.html @@ -2,13 +2,13 @@ - + BenchMarkTest1 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest2.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest2.html index 4244ecf..2eff6bc 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest2.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest2.html @@ -2,13 +2,13 @@ - + BenchMarkTest2 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest3.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest3.html index 7a056fa..e285a8b 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest3.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest3.html @@ -2,13 +2,13 @@ - + BenchMarkTest3 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest4.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest4.html index 852b972..3cad5af 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest4.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest4.html @@ -2,13 +2,13 @@ - + BenchMarkTest4 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest5.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest5.html index 6a1f5d7..79147b8 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest5.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTest5.html @@ -2,13 +2,13 @@ - + BenchMarkTest5 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestExternalCfg.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestExternalCfg.html index 3c673e6..d72449f 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestExternalCfg.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestExternalCfg.html @@ -2,13 +2,13 @@ - + BenchMarkTestExternalCfg (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestFilterCategory.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestFilterCategory.html index 9bde7ab..b2b900c 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestFilterCategory.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestFilterCategory.html @@ -2,13 +2,13 @@ - + BenchMarkTestFilterCategory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestSingleton.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestSingleton.html index 5e95ee9..16fa519 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestSingleton.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestSingleton.html @@ -2,13 +2,13 @@ - + BenchMarkTestSingleton (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestTSCountry.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestTSCountry.html index a80120e..6e33ed9 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestTSCountry.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTestTSCountry.html @@ -2,13 +2,13 @@ - + BenchMarkTestTSCountry (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTrainingSet.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTrainingSet.html index fd7b6a1..fecb4d1 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTrainingSet.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTrainingSet.html @@ -2,13 +2,13 @@ - + BenchMarkTrainingSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTrainingSetScientificName.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTrainingSetScientificName.html index d624ea3..2c2782d 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTrainingSetScientificName.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/BenchMarkTrainingSetScientificName.html @@ -2,13 +2,13 @@ - + BenchMarkTrainingSetScientificName (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/TestExternalCfgProduction.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/TestExternalCfgProduction.html index 6f9a40f..8728fd7 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/TestExternalCfgProduction.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/TestExternalCfgProduction.html @@ -2,13 +2,13 @@ - + TestExternalCfgProduction (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/TestSingleExternalCfgProduction.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/TestSingleExternalCfgProduction.html index 5f9637c..a15cf67 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/TestSingleExternalCfgProduction.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/TestSingleExternalCfgProduction.html @@ -2,13 +2,13 @@ - + TestSingleExternalCfgProduction (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest1.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest1.html index c917991..43ea48a 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest1.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest1.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMarkTest1 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest2.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest2.html index fee4e56..09f1d64 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest2.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest2.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMarkTest2 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest3.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest3.html index 3fd1e3d..cf998c3 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest3.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest3.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMarkTest3 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest4.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest4.html index 536e138..5bb2343 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest4.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest4.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMarkTest4 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest5.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest5.html index 7cf0d2d..69d44f6 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest5.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTest5.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMarkTest5 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestExternalCfg.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestExternalCfg.html index 6440891..895be6d 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestExternalCfg.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestExternalCfg.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMarkTestExternalCfg (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestFilterCategory.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestFilterCategory.html index 046818b..99ec607 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestFilterCategory.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestFilterCategory.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMarkTestFilterCategory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestSingleton.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestSingleton.html index 55b5695..73dfe83 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestSingleton.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestSingleton.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMarkTestSingleton (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestTSCountry.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestTSCountry.html index eb249ba..481deec 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestTSCountry.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTestTSCountry.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMarkTestTSCountry (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTrainingSet.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTrainingSet.html index 7e76d27..2dcb3a9 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTrainingSet.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTrainingSet.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMarkTrainingSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTrainingSetScientificName.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTrainingSetScientificName.html index 3c14479..7322c06 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTrainingSetScientificName.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/BenchMarkTrainingSetScientificName.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMarkTrainingSetScientificName (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.BenchMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/TestExternalCfgProduction.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/TestExternalCfgProduction.html index ec9e174..837ee2f 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/TestExternalCfgProduction.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/TestExternalCfgProduction.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.TestExternalCfgProduction (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.TestExt
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/TestSingleExternalCfgProduction.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/TestSingleExternalCfgProduction.html index 7da6681..0567f80 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/TestSingleExternalCfgProduction.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/class-use/TestSingleExternalCfgProduction.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.TestSingleExternalCfgProduction (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old.TestSin
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-frame.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-frame.html index fb7b9a9..f30b916 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.test.old (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-summary.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-summary.html index 8e48094..a8b9a6a 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.test.old (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -201,6 +201,6 @@ Package org.gcube.contentmanagement.lexicalmatcher.analysis.test.old
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-tree.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-tree.html index 9343aba..d8f141e 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.test.old Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-use.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-use.html index dfda5fa..4e2926a 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/old/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.lexicalmatcher.analysis.test.old (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test.old
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-frame.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-frame.html index 197198a..411c617 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.test (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-summary.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-summary.html index 21f47f3..cd51c79 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.test (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -157,6 +157,6 @@ Package org.gcube.contentmanagement.lexicalmatcher.analysis.test
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-tree.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-tree.html index 14abb16..346345c 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.analysis.test Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-use.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-use.html index 9962f25..25ef68a 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/analysis/test/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.lexicalmatcher.analysis.test (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.analysis.test
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/AnalysisLogger.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/AnalysisLogger.html index 51a1f4b..80c58fa 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/AnalysisLogger.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/AnalysisLogger.html @@ -2,13 +2,13 @@ - + AnalysisLogger (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -286,6 +286,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/DatabaseFactory.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/DatabaseFactory.html index a505fd2..194e845 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/DatabaseFactory.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/DatabaseFactory.html @@ -2,13 +2,13 @@ - + DatabaseFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -412,6 +412,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/DistanceCalculator.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/DistanceCalculator.html index 095db07..9a91c04 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/DistanceCalculator.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/DistanceCalculator.html @@ -2,13 +2,13 @@ - + DistanceCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -319,6 +319,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/FileTools.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/FileTools.html index a5aa760..67f063a 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/FileTools.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/FileTools.html @@ -2,13 +2,13 @@ - + FileTools (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -367,6 +367,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/MathFunctions.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/MathFunctions.html index 36f0ecc..fbc9957 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/MathFunctions.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/MathFunctions.html @@ -2,13 +2,13 @@ - + MathFunctions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -376,6 +376,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/AnalysisLogger.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/AnalysisLogger.html index 30df330..97157b6 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/AnalysisLogger.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/AnalysisLogger.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/DatabaseFactory.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/DatabaseFactory.html index 3f5be3b..04b709d 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/DatabaseFactory.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/DatabaseFactory.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.utils.DatabaseFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.utils.DatabaseFactory
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/DistanceCalculator.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/DistanceCalculator.html index e767090..0334513 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/DistanceCalculator.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/DistanceCalculator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.utils.DistanceCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.utils.DistanceCalculator
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/FileTools.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/FileTools.html index 1657b83..1570f83 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/FileTools.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/FileTools.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.utils.FileTools (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.utils.FileTools
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/MathFunctions.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/MathFunctions.html index 8f8c9fe..90cf083 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/MathFunctions.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/class-use/MathFunctions.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.contentmanagement.lexicalmatcher.utils.MathFunctions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.utils.MathFunctions
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-frame.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-frame.html index b6cd4f1..65c6f10 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-frame.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.utils (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-summary.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-summary.html index 28ebcc6..0af6b31 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-summary.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.utils (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -169,6 +169,6 @@ Package org.gcube.contentmanagement.lexicalmatcher.utils
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-tree.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-tree.html index 30854ee..99314ed 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-tree.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.contentmanagement.lexicalmatcher.utils Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-use.html b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-use.html index f8000b5..86fa90d 100644 --- a/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-use.html +++ b/target/apidocs/org/gcube/contentmanagement/lexicalmatcher/utils/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.contentmanagement.lexicalmatcher.utils (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.contentmanagement.lexicalmatcher.utils
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/DBScan.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/DBScan.html index f5ef99e..f85b473 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/DBScan.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/DBScan.html @@ -2,13 +2,13 @@ - + DBScan (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -957,6 +957,6 @@ DETAIL: FIELD |  KMeans (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -417,6 +417,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/XMeans.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/XMeans.html index f90ba3c..a2eedb2 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/XMeans.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/XMeans.html @@ -2,13 +2,13 @@ - + XMeans (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -3692,6 +3692,6 @@ DETAIL: FIELD |  XMeansWrapper.CSV2Arff (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -223,6 +223,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/XMeansWrapper.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/XMeansWrapper.html index 8394339..d81a0d7 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/XMeansWrapper.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/XMeansWrapper.html @@ -2,13 +2,13 @@ - + XMeansWrapper (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -436,6 +436,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/DBScan.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/DBScan.html index 0799547..6bcd1fd 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/DBScan.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/DBScan.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.clustering.DBScan (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -184,6 +184,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.clustering.KMeans (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.clustering.KMeans
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeans.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeans.html index ab96dcd..66c10b5 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeans.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeans.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.clustering.XMeans (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.clustering.XMeans
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeansWrapper.CSV2Arff.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeansWrapper.CSV2Arff.html index a46f408..89816fb 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeansWrapper.CSV2Arff.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeansWrapper.CSV2Arff.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.clustering.XMeansWrapper.CSV2Arff (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.clustering.XMeansWrapper.CSV2Arff
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeansWrapper.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeansWrapper.html index 5a2948d..732566d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeansWrapper.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/class-use/XMeansWrapper.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.clustering.XMeansWrapper (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.clustering.XMeansWrapper
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-frame.html index 0a464f7..921edcf 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.clustering (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-summary.html index 83e8503..0eced13 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.clustering (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -165,6 +165,6 @@ Package org.gcube.dataanalysis.ecoengine.clustering
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-tree.html index 62974ba..66858ed 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.clustering Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -159,6 +159,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-use.html index badab14..c448d2d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/clustering/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.clustering (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -166,6 +166,6 @@ Classes in
ALG_PROPS (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -414,6 +414,6 @@ DETAIL: ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/AlgorithmConfiguration.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/AlgorithmConfiguration.html index a99651f..37b57a4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/AlgorithmConfiguration.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/AlgorithmConfiguration.html @@ -2,13 +2,13 @@ - + AlgorithmConfiguration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -1151,6 +1151,6 @@ DETAIL: FIELD |  INFRASTRUCTURE (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -334,6 +334,6 @@ DETAIL: ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/class-use/ALG_PROPS.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/class-use/ALG_PROPS.html index 23a433b..6bc1b24 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/class-use/ALG_PROPS.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/class-use/ALG_PROPS.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.configuration.ALG_PROPS (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -442,6 +442,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.configuration.AlgorithmConfiguration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -1489,6 +1489,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.configuration.INFRASTRUCTURE (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -386,6 +386,6 @@ Uses of org.gcube.dataanalysis.ecoengine.configuration (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-summary.html index 715d922..854be15 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.configuration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -171,6 +171,6 @@ Package org.gcube.dataanalysis.ecoengine.configuration
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-tree.html index 5aa0473..3df78f3 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.configuration Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -162,6 +162,6 @@ Enum Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-use.html index df373e1..8e8fcca 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/configuration/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.configuration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -523,6 +523,6 @@ Classes in
RemoteGenerationManager (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -289,6 +289,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/RemoteHspecInputObject.Table.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/RemoteHspecInputObject.Table.html index 1b5bd4c..bfcf4f1 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/RemoteHspecInputObject.Table.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/RemoteHspecInputObject.Table.html @@ -2,13 +2,13 @@ - + RemoteHspecInputObject.Table (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -277,6 +277,6 @@ DETAIL: FIELD |  RemoteHspecInputObject (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -489,6 +489,6 @@ DETAIL: FIELD |  RemoteHspecOutputObject.Metric (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -380,6 +380,6 @@ DETAIL: FIELD |  RemoteHspecOutputObject (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -376,6 +376,6 @@ DETAIL: FIELD |  Uses of Class org.gcube.dataanalysis.ecoengine.connectors.RemoteGenerationManager (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.connectors.RemoteGenerationManager
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/class-use/RemoteHspecInputObject.Table.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/class-use/RemoteHspecInputObject.Table.html index fd63627..8d6ee49 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/class-use/RemoteHspecInputObject.Table.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/class-use/RemoteHspecInputObject.Table.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.connectors.RemoteHspecInputObject.Table (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -200,6 +200,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.connectors.RemoteHspecInputObject (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.connectors.RemoteHspecOutputObject.Metric (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.connectors.RemoteHspecOutputObject (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of ResourceLoad (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -326,6 +326,6 @@ DETAIL: FIELD |  Resources (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -305,6 +305,6 @@ DETAIL: FIELD |  SingleResource (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -276,6 +276,6 @@ DETAIL: FIELD |  Uses of Class org.gcube.dataanalysis.ecoengine.connectors.livemonitor.ResourceLoad (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.connectors.livemonitor.ResourceLoad
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/class-use/Resources.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/class-use/Resources.html index 5746769..b60bd35 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/class-use/Resources.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/class-use/Resources.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.connectors.livemonitor.Resources (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.connectors.livemonitor.SingleResource (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -205,6 +205,6 @@ Uses of org.gcube.dataanalysis.ecoengine.connectors.livemonitor (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-summary.html index 9b3bd73..3c4ec60 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.connectors.livemonitor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -161,6 +161,6 @@ Package org.gcube.dataanalysis.ecoengine.connectors.livemonitor
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-tree.html index 847540a..c823618 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.connectors.livemonitor Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-use.html index 93fb186..aff013c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/livemonitor/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.connectors.livemonitor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -191,6 +191,6 @@ Classes in
org.gcube.dataanalysis.ecoengine.connectors (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-summary.html index c115039..2ae3139 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.connectors (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -161,6 +161,6 @@ Package org.gcube.dataanalysis.ecoengine.connectors
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-tree.html index cf5ea01..016636b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.connectors Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-use.html index 08f4583..e26d5ba 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/connectors/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.connectors (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -184,6 +184,6 @@ Classes in
ColumnType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -303,6 +303,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/ColumnTypesList.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/ColumnTypesList.html index 4c776b8..f4db87d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/ColumnTypesList.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/ColumnTypesList.html @@ -2,13 +2,13 @@ - + ColumnTypesList (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -347,6 +347,6 @@ DETAIL: FIELD |  DatabaseType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -387,6 +387,6 @@ DETAIL: FIELD |  InputTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -390,6 +390,6 @@ DETAIL: FIELD |  OutputTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -377,6 +377,6 @@ DETAIL: FIELD |  PrimitiveType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -511,6 +511,6 @@ DETAIL: FIELD |  PrimitiveTypesList (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -368,6 +368,6 @@ DETAIL: FIELD |  ServiceType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -368,6 +368,6 @@ DETAIL: FIELD |  StatisticalType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -554,6 +554,6 @@ DETAIL: FIELD |  StatisticalTypeList (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -299,6 +299,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/TablesList.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/TablesList.html index 0883023..c40ffea 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/TablesList.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/TablesList.html @@ -2,13 +2,13 @@ - + TablesList (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -365,6 +365,6 @@ DETAIL: FIELD |  Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.ColumnType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -208,6 +208,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.ColumnTypesList (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.datatypes.ColumnTypesList
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/DatabaseType.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/DatabaseType.html index 699fb8c..7b6a17d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/DatabaseType.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/DatabaseType.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.DatabaseType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.datatypes.DatabaseType
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/InputTable.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/InputTable.html index 4c40ef8..08e0886 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/InputTable.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/InputTable.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.InputTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -224,6 +224,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.OutputTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.datatypes.OutputTable
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/PrimitiveType.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/PrimitiveType.html index 093c5b9..15540e1 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/PrimitiveType.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/PrimitiveType.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -208,6 +208,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveTypesList (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveTypesList
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/ServiceType.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/ServiceType.html index 908d610..768bbf4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/ServiceType.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/ServiceType.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.ServiceType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.datatypes.ServiceType
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/StatisticalType.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/StatisticalType.html index 1305eea..a0252a5 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/StatisticalType.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/StatisticalType.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -1210,6 +1210,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.StatisticalTypeList (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.datatypes.StatisticalTypeList
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/TablesList.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/TablesList.html index ae35ba4..fa87036 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/TablesList.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/class-use/TablesList.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.TablesList (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.datatypes.TablesList
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/DatabaseParameters.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/DatabaseParameters.html index 7aad920..f3de551 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/DatabaseParameters.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/DatabaseParameters.html @@ -2,13 +2,13 @@ - + DatabaseParameters (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -382,6 +382,6 @@ DETAIL: 
ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/PrimitiveTypes.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/PrimitiveTypes.html index 41e6b84..cf4e4ac 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/PrimitiveTypes.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/PrimitiveTypes.html @@ -2,13 +2,13 @@ - + PrimitiveTypes (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -430,6 +430,6 @@ DETAIL: ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/ServiceParameters.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/ServiceParameters.html index 0fe27ea..efa40c4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/ServiceParameters.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/ServiceParameters.html @@ -2,13 +2,13 @@ - + ServiceParameters (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -366,6 +366,6 @@ DETAIL: ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/TableTemplates.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/TableTemplates.html index aba6405..ffda85d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/TableTemplates.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/TableTemplates.html @@ -2,13 +2,13 @@ - + TableTemplates (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -462,6 +462,6 @@ DETAIL: ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/DatabaseParameters.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/DatabaseParameters.html index a79e6a7..4ae4f70 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/DatabaseParameters.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/DatabaseParameters.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.DatabaseParameters (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -281,6 +281,6 @@ the order they are declared.
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/PrimitiveTypes.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/PrimitiveTypes.html index d1b39a6..0fec2b4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/PrimitiveTypes.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/PrimitiveTypes.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -305,6 +305,6 @@ the order they are declared.
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/ServiceParameters.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/ServiceParameters.html index 26a9d37..7282a30 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/ServiceParameters.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/ServiceParameters.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.ServiceParameters (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -281,6 +281,6 @@ the order they are declared.
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/TableTemplates.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/TableTemplates.html index 0a4cbec..fb86a0b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/TableTemplates.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/class-use/TableTemplates.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.TableTemplates (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -336,6 +336,6 @@ the order they are declared.
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-frame.html index c1772d7..60b55c5 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.datatypes.enumtypes (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-summary.html index 9272c38..3725873 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.datatypes.enumtypes (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -165,6 +165,6 @@ Package org.gcube.dataanalysis.ecoengine.datatypes.enumtypes
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-tree.html index 0a646a6..463d8d0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.datatypes.enumtypes Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -152,6 +152,6 @@ Enum Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-use.html index f3ea19a..9f191f9 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/enumtypes/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.datatypes.enumtypes (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -221,6 +221,6 @@ Classes in org.gcube.dataanalysis.ecoengine.datatypes (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-summary.html index c845105..e6e800a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.datatypes (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -193,6 +193,6 @@ Package org.gcube.dataanalysis.ecoengine.datatypes
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-tree.html index 904091e..e4a729b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.datatypes Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-use.html index 91a3117..96ba829 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/datatypes/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.datatypes (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -412,6 +412,6 @@ Classes in
DiscrepancyAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -342,6 +342,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/DistributionQualityAnalysis.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/DistributionQualityAnalysis.html index a2ab308..74ae4a2 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/DistributionQualityAnalysis.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/DistributionQualityAnalysis.html @@ -2,13 +2,13 @@ - + DistributionQualityAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -513,6 +513,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/HabitatRepresentativeness.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/HabitatRepresentativeness.html index 8b93e9b..01c6b10 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/HabitatRepresentativeness.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/HabitatRepresentativeness.html @@ -2,13 +2,13 @@ - + HabitatRepresentativeness (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -449,6 +449,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/BioClimateAnalysis.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/BioClimateAnalysis.html index 8a37ab9..d74fad8 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/BioClimateAnalysis.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/BioClimateAnalysis.html @@ -2,13 +2,13 @@ - + BioClimateAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -785,6 +785,6 @@ DETAIL: FIELD |  BioClimateGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -559,6 +559,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/ExperimentForArticle.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/ExperimentForArticle.html index 82ec02e..753e4fa 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/ExperimentForArticle.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/ExperimentForArticle.html @@ -2,13 +2,13 @@ - + ExperimentForArticle (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/ExperimentHSPECForArticle.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/ExperimentHSPECForArticle.html index b8fa214..302270d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/ExperimentHSPECForArticle.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/ExperimentHSPECForArticle.html @@ -2,13 +2,13 @@ - + ExperimentHSPECForArticle (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/InterpolateTables.INTERPOLATIONFUNCTIONS.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/InterpolateTables.INTERPOLATIONFUNCTIONS.html index 59c1095..f8ec926 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/InterpolateTables.INTERPOLATIONFUNCTIONS.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/InterpolateTables.INTERPOLATIONFUNCTIONS.html @@ -2,13 +2,13 @@ - + InterpolateTables.INTERPOLATIONFUNCTIONS (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -321,6 +321,6 @@ DETAIL: ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/InterpolateTables.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/InterpolateTables.html index eb2a297..419460c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/InterpolateTables.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/InterpolateTables.html @@ -2,13 +2,13 @@ - + InterpolateTables (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -463,6 +463,6 @@ DETAIL: FIELD |  ProduceTestMap (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/BioClimateAnalysis.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/BioClimateAnalysis.html index 7befbd8..857ada3 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/BioClimateAnalysis.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/BioClimateAnalysis.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.evaluation.bioclimate.BioClimateAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.evaluation.bioclimate.BioClimateGraph (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.evaluation.bioclimate.BioClimateGra
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/ExperimentForArticle.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/ExperimentForArticle.html index d07c7cb..d0615f3 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/ExperimentForArticle.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/ExperimentForArticle.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.evaluation.bioclimate.ExperimentForArticle (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.evaluation.bioclimate.ExperimentFor
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/ExperimentHSPECForArticle.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/ExperimentHSPECForArticle.html index 61ab578..2c5f2ee 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/ExperimentHSPECForArticle.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/ExperimentHSPECForArticle.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.evaluation.bioclimate.ExperimentHSPECForArticle (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.evaluation.bioclimate.ExperimentHSP
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/InterpolateTables.INTERPOLATIONFUNCTIONS.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/InterpolateTables.INTERPOLATIONFUNCTIONS.html index 2302fe5..a251ba6 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/InterpolateTables.INTERPOLATIONFUNCTIONS.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/InterpolateTables.INTERPOLATIONFUNCTIONS.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.evaluation.bioclimate.InterpolateTables.INTERPOLATIONFUNCTIONS (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -206,6 +206,6 @@ the order they are declared.
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/InterpolateTables.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/InterpolateTables.html index 3a45de7..6af58f9 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/InterpolateTables.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/class-use/InterpolateTables.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.evaluation.bioclimate.InterpolateTables (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.evaluation.bioclimate.ProduceTestMap (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.evaluation.bioclimate.ProduceTestMa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-frame.html index 76061d1..d6183c6 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.evaluation.bioclimate (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-summary.html index b3f9cd9..4f35a3d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.evaluation.bioclimate (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -187,6 +187,6 @@ Package org.gcube.dataanalysis.ecoengine.evaluation.bioclimate
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-tree.html index 135c12c..602fb0d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.evaluation.bioclimate Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -178,6 +178,6 @@ Enum Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-use.html index bb5eba8..5e3ab00 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/bioclimate/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.evaluation.bioclimate (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -191,6 +191,6 @@ Classes in
Uses of Class org.gcube.dataanalysis.ecoengine.evaluation.DiscrepancyAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.evaluation.DiscrepancyAnalysis
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/class-use/DistributionQualityAnalysis.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/class-use/DistributionQualityAnalysis.html index 2ebe526..37b758a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/class-use/DistributionQualityAnalysis.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/class-use/DistributionQualityAnalysis.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.evaluation.DistributionQualityAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.evaluation.DistributionQualityAnaly
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/class-use/HabitatRepresentativeness.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/class-use/HabitatRepresentativeness.html index 88e722f..135137a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/class-use/HabitatRepresentativeness.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/class-use/HabitatRepresentativeness.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.evaluation.HabitatRepresentativeness (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.evaluation.HabitatRepresentativenes
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-frame.html index d4678d1..c45375c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.evaluation (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-summary.html index 263cc8f..047ce20 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.evaluation (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -161,6 +161,6 @@ Package org.gcube.dataanalysis.ecoengine.evaluation
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-tree.html index 9918c56..b3a973c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.evaluation Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -152,6 +152,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-use.html index 3f46e66..479ae13 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/evaluation/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.evaluation (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.evaluation
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/ActorNode.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/ActorNode.html index 35a2b1b..d2ea1ad 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/ActorNode.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/ActorNode.html @@ -2,13 +2,13 @@ - + ActorNode (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -461,6 +461,6 @@ DETAIL: FIELD | 
CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Clusterer.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Clusterer.html index 58f1a81..abc5ee8 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Clusterer.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Clusterer.html @@ -2,13 +2,13 @@ - + Clusterer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -189,6 +189,6 @@ DETAIL: FIELD | CONSTR | METHOD
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/ComputationalAgent.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/ComputationalAgent.html index 65665fa..03cc335 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/ComputationalAgent.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/ComputationalAgent.html @@ -2,13 +2,13 @@ - + ComputationalAgent (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -404,6 +404,6 @@ DETAIL: FIELD | CONSTR | METHO
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/DataAnalysis.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/DataAnalysis.html index c15151a..19fa32d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/DataAnalysis.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/DataAnalysis.html @@ -2,13 +2,13 @@ - + DataAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -622,6 +622,6 @@ DETAIL: 
FIELD |  Evaluator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -189,6 +189,6 @@ DETAIL: FIELD | CONSTR | METHOD
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Generator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Generator.html index 858841b..acf482c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Generator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Generator.html @@ -2,13 +2,13 @@ - + Generator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -264,6 +264,6 @@ DETAIL: FIELD | CONSTR | 
METHO
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/GenericAlgorithm.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/GenericAlgorithm.html index b35ef11..0d9db4c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/GenericAlgorithm.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/GenericAlgorithm.html @@ -2,13 +2,13 @@ - + GenericAlgorithm (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -284,6 +284,6 @@ DETAIL: FIELD | CONSTR | 
METHO
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Model.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Model.html index 6b97b2a..1b11316 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Model.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Model.html @@ -2,13 +2,13 @@ - + Model (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -458,6 +458,6 @@ DETAIL: FIELD | CONSTR | 
METHO
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Modeler.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Modeler.html index 6089956..12c1db8 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Modeler.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Modeler.html @@ -2,13 +2,13 @@ - + Modeler (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -286,6 +286,6 @@ DETAIL: FIELD | CONSTR | 
METHO
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionGeneric.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionGeneric.html index 3a5b4bb..29b9d4f 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionGeneric.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionGeneric.html @@ -2,13 +2,13 @@ - + SpatialProbabilityDistributionGeneric (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -496,6 +496,6 @@ DETAIL: FIELD | CONSTR | 
METHO
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionNode.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionNode.html index c0dd7a6..35de7df 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionNode.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionNode.html @@ -2,13 +2,13 @@ - + SpatialProbabilityDistributionNode (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -483,6 +483,6 @@ DETAIL: FIELD | 
CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionTable.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionTable.html index 1f860c7..83a6426 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionTable.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/SpatialProbabilityDistributionTable.html @@ -2,13 +2,13 @@ - + SpatialProbabilityDistributionTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -582,6 +582,6 @@ DETAIL: FIELD | CONSTR | METHO
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Transducerer.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Transducerer.html index 29782c1..e5c8253 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Transducerer.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/Transducerer.html @@ -2,13 +2,13 @@ - + Transducerer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -189,6 +189,6 @@ DETAIL: FIELD | CONSTR | METHOD
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/ActorNode.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/ActorNode.html index 8d31b07..d72c3d4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/ActorNode.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/ActorNode.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.interfaces.ActorNode (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.interfaces.ActorNode
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/Clusterer.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/Clusterer.html index 2d000b7..c47a7ce 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/Clusterer.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/Clusterer.html @@ -2,13 +2,13 @@ - + Uses of Interface org.gcube.dataanalysis.ecoengine.interfaces.Clusterer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -221,6 +221,6 @@ Uses of
Uses of Interface org.gcube.dataanalysis.ecoengine.interfaces.ComputationalAgent (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -820,6 +820,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.interfaces.DataAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -192,6 +192,6 @@ Uses of Uses of Interface org.gcube.dataanalysis.ecoengine.interfaces.Evaluator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ Uses of Uses of Interface org.gcube.dataanalysis.ecoengine.interfaces.Generator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -230,6 +230,6 @@ Uses of Uses of Interface org.gcube.dataanalysis.ecoengine.interfaces.GenericAlgorithm (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -370,6 +370,6 @@ Uses of Uses of Interface org.gcube.dataanalysis.ecoengine.interfaces.Model (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -511,6 +511,6 @@ Uses of Uses of Interface org.gcube.dataanalysis.ecoengine.interfaces.Modeler (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -222,6 +222,6 @@ Uses of Uses of Interface org.gcube.dataanalysis.ecoengine.interfaces.SpatialProbabilityDistributionGeneric (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -229,6 +229,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.interfaces.SpatialProbabilityDistributionNode (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.interfaces.SpatialProbabilityDistri
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/SpatialProbabilityDistributionTable.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/SpatialProbabilityDistributionTable.html index 2647263..a5fec0b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/SpatialProbabilityDistributionTable.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/class-use/SpatialProbabilityDistributionTable.html @@ -2,13 +2,13 @@ - + Uses of Interface org.gcube.dataanalysis.ecoengine.interfaces.SpatialProbabilityDistributionTable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -224,6 +224,6 @@ Uses of
Uses of Interface org.gcube.dataanalysis.ecoengine.interfaces.Transducerer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -338,6 +338,6 @@ Uses of org.gcube.dataanalysis.ecoengine.interfaces (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-summary.html index 44c7bff..bd6c703 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.interfaces (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -212,6 +212,6 @@ Package org.gcube.dataanalysis.ecoengine.interfaces
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-tree.html index 1297d2d..077ce77 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.interfaces Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -161,6 +161,6 @@ Interface Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-use.html index 4977562..e32eca0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/interfaces/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.interfaces (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -534,6 +534,6 @@ Classes in
SimpleModeler (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -622,6 +622,6 @@ DETAIL: FIELD |  Uses of Class org.gcube.dataanalysis.ecoengine.modeling.SimpleModeler (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.modeling.SimpleModeler
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-frame.html index d061681..56eb08f 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.modeling (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-summary.html index a14fe75..2ed9149 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.modeling (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.dataanalysis.ecoengine.modeling
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-tree.html index 795a55c..ebf84c3 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.modeling Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -150,6 +150,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-use.html index 4bfc366..026f71b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/modeling/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.modeling (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.modeling
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/FeedForwardNN.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/FeedForwardNN.html index 9786478..defbddf 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/FeedForwardNN.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/FeedForwardNN.html @@ -2,13 +2,13 @@ - + FeedForwardNN (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -747,6 +747,6 @@ DETAIL: 
FIELD |  ModelAquamapsNN (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -699,6 +699,6 @@ DETAIL: FIELD |  ModelAquamapsNNNS (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -570,6 +570,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/ModelHSPEN.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/ModelHSPEN.html index 0eb3895..72aa29d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/ModelHSPEN.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/ModelHSPEN.html @@ -2,13 +2,13 @@ - + ModelHSPEN (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -648,6 +648,6 @@ DETAIL: FIELD |  Uses of Class org.gcube.dataanalysis.ecoengine.models.FeedForwardNN (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.FeedForwardNN
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/class-use/ModelAquamapsNN.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/class-use/ModelAquamapsNN.html index 0247493..41027fd 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/class-use/ModelAquamapsNN.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/class-use/ModelAquamapsNN.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.ModelAquamapsNN (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -205,6 +205,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.models.ModelAquamapsNNNS (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.ModelAquamapsNNNS
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/class-use/ModelHSPEN.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/class-use/ModelHSPEN.html index b303fec..dae7d68 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/class-use/ModelHSPEN.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/class-use/ModelHSPEN.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.ModelHSPEN (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.ModelHSPEN
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/AquamapsEnvelope.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/AquamapsEnvelope.html index 3d0f082..cc14ec2 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/AquamapsEnvelope.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/AquamapsEnvelope.html @@ -2,13 +2,13 @@ - + AquamapsEnvelope (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -588,6 +588,6 @@ DETAIL: 
FIELD |  AquamapsEnvelopeAlgorithm (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -371,6 +371,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Coordinates.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Coordinates.html index 26be23f..cd56520 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Coordinates.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Coordinates.html @@ -2,13 +2,13 @@ - + Coordinates (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -505,6 +505,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Envelope.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Envelope.html index f9fd7f7..9334ae2 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Envelope.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Envelope.html @@ -2,13 +2,13 @@ - + Envelope (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -439,6 +439,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeModel.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeModel.html index 687b8e7..76269e2 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeModel.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeModel.html @@ -2,13 +2,13 @@ - + EnvelopeModel (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -302,6 +302,6 @@ DETAIL: ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeName.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeName.html index ef37e28..586559d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeName.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeName.html @@ -2,13 +2,13 @@ - + EnvelopeName (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -366,6 +366,6 @@ DETAIL: ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeSet.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeSet.html index 85d3102..9ae4a17 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeSet.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/EnvelopeSet.html @@ -2,13 +2,13 @@ - + EnvelopeSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -324,6 +324,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Hspen.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Hspen.html index 7eaa62e..dadae74 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Hspen.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/Hspen.html @@ -2,13 +2,13 @@ - + Hspen (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -761,6 +761,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/MaxMinGenerator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/MaxMinGenerator.html index bcd24da..d46bdeb 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/MaxMinGenerator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/MaxMinGenerator.html @@ -2,13 +2,13 @@ - + MaxMinGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -366,6 +366,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/OccurrencePoint.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/OccurrencePoint.html index b875ed9..f858efd 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/OccurrencePoint.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/OccurrencePoint.html @@ -2,13 +2,13 @@ - + OccurrencePoint (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -396,6 +396,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/OccurrencePointSets.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/OccurrencePointSets.html index 0f404cd..53d54b9 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/OccurrencePointSets.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/OccurrencePointSets.html @@ -2,13 +2,13 @@ - + OccurrencePointSets (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -351,6 +351,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_landdist.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_landdist.html index d994088..929c1ad 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_landdist.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_landdist.html @@ -2,13 +2,13 @@ - + SpEnv_landdist (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -298,6 +298,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_primprod.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_primprod.html index 96a0692..1c665ba 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_primprod.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_primprod.html @@ -2,13 +2,13 @@ - + SpEnv_primprod (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -298,6 +298,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_salinity.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_salinity.html index 1c22e66..83f148b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_salinity.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_salinity.html @@ -2,13 +2,13 @@ - + SpEnv_salinity (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -300,6 +300,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_seaice.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_seaice.html index 1b9a476..393291a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_seaice.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_seaice.html @@ -2,13 +2,13 @@ - + SpEnv_seaice (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -298,6 +298,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_temp.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_temp.html index 3306f73..f24e117 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_temp.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/SpEnv_temp.html @@ -2,13 +2,13 @@ - + SpEnv_temp (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -300,6 +300,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/AquamapsEnvelope.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/AquamapsEnvelope.html index 35e9ab1..8932fd2 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/AquamapsEnvelope.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/AquamapsEnvelope.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.AquamapsEnvelope (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -208,6 +208,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.AquamapsEnvelopeAlgorithm (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.AquamapsEnvel
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/Coordinates.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/Coordinates.html index 729e25a..d71d550 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/Coordinates.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/Coordinates.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.Coordinates (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -192,6 +192,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.Envelope (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -320,6 +320,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.EnvelopeModel (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -211,6 +211,6 @@ the order they are declared.
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/EnvelopeName.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/EnvelopeName.html index 45185f6..432fcec 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/EnvelopeName.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/EnvelopeName.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.EnvelopeName (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -217,6 +217,6 @@ the order they are declared.
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/EnvelopeSet.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/EnvelopeSet.html index 8ca38a2..c68172a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/EnvelopeSet.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/EnvelopeSet.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.EnvelopeSet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -204,6 +204,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.Hspen (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.MaxMinGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.MaxMinGenerat
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/OccurrencePoint.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/OccurrencePoint.html index e8d8b0e..a9c2551 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/OccurrencePoint.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/OccurrencePoint.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.OccurrencePoint (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -236,6 +236,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.OccurrencePointSets (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -178,6 +178,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.SpEnv_landdist (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.SpEnv_landdis
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_primprod.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_primprod.html index 008c051..f811d77 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_primprod.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_primprod.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.SpEnv_primprod (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.SpEnv_primpro
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_salinity.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_salinity.html index 72d7372..2feb2ad 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_salinity.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_salinity.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.SpEnv_salinity (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.SpEnv_salinit
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_seaice.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_seaice.html index 8849fe0..3cc62d7 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_seaice.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_seaice.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.SpEnv_seaice (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.SpEnv_seaice
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_temp.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_temp.html index fb0576d..434dff0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_temp.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/class-use/SpEnv_temp.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.SpEnv_temp (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.cores.aquamaps.SpEnv_temp
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-frame.html index 0d40a34..5136de9 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.cores.aquamaps (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-summary.html index dfd383e..4e47e8a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.cores.aquamaps (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -223,6 +223,6 @@ Package org.gcube.dataanalysis.ecoengine.models.cores.aquamaps
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-tree.html index a6190fa..4cb1725 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.cores.aquamaps Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -161,6 +161,6 @@ Enum Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-use.html index b2a5136..88a7e09 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/aquamaps/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.models.cores.aquamaps (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -214,6 +214,6 @@ Classes in
Neural_Network.ACTIVATIONFUNCTION (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -337,6 +337,6 @@ DETAIL: ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/Neural_Network.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/Neural_Network.html index b29b41d..02d62eb 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/Neural_Network.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/Neural_Network.html @@ -2,13 +2,13 @@ - + Neural_Network (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -887,6 +887,6 @@ DETAIL: FIELD |  Neuron (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -392,6 +392,6 @@ DETAIL: FIELD |  Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.Neural_Network.ACTIVATIONFUNCTION (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -219,6 +219,6 @@ the order they are declared.
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/class-use/Neural_Network.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/class-use/Neural_Network.html index 0034075..83e56ac 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/class-use/Neural_Network.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/class-use/Neural_Network.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.Neural_Network (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -318,6 +318,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.Neuron (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of LineReader (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -267,6 +267,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/NeuralNet.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/NeuralNet.html index 5407f7c..bdc764a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/NeuralNet.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/NeuralNet.html @@ -2,13 +2,13 @@ - + NeuralNet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -680,6 +680,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/Neuron.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/Neuron.html index e745e9e..8150a8d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/Neuron.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/Neuron.html @@ -2,13 +2,13 @@ - + Neuron (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -716,6 +716,6 @@ DETAIL: FIELD |  Pattern (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -294,6 +294,6 @@ DETAIL: FIELD |  Randomizer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -308,6 +308,6 @@ DETAIL: FIELD |  Synapse (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -337,6 +337,6 @@ DETAIL: FIELD |  Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosolutions.LineReader (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neuroso
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/class-use/NeuralNet.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/class-use/NeuralNet.html index 02e9018..026506d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/class-use/NeuralNet.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/class-use/NeuralNet.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosolutions.NeuralNet (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -206,6 +206,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosolutions.Neuron (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -246,6 +246,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosolutions.Pattern (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -214,6 +214,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosolutions.Randomizer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -227,6 +227,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosolutions.Synapse (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -214,6 +214,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosolutions.example3 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neuroso
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/example3.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/example3.html index 3f5787a..9f0d90d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/example3.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/example3.html @@ -2,13 +2,13 @@ - + example3 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -248,6 +248,6 @@ DETAIL: FIELD | 
CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-frame.html index 2df26af..0f80f2c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosolutions (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-summary.html index 44df746..8859406 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosolutions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -177,6 +177,6 @@ Package org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosoluti
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-tree.html index 0a96f5b..4906672 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosolutions Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-use.html index 3b2c630..0bf172d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/neurosolutions/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks.neurosolutions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -222,6 +222,6 @@ Classes in org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-summary.html index 8748e83..2536d6c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -171,6 +171,6 @@ Package org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-tree.html index b4d4fd5..086eddc 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -161,6 +161,6 @@ Enum Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-use.html index d43c27e..5f6657c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/neuralnetworks/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.models.cores.neuralnetworks (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -254,6 +254,6 @@ Classes in
PrincipalComponentAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -491,6 +491,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/class-use/PrincipalComponentAnalysis.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/class-use/PrincipalComponentAnalysis.html index 37a2d22..3d91552 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/class-use/PrincipalComponentAnalysis.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/class-use/PrincipalComponentAnalysis.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.models.cores.pca.PrincipalComponentAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.cores.pca.PrincipalComponent
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-frame.html index 7363eaa..16cf879 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.cores.pca (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-summary.html index 6f87bbb..82bbe12 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.cores.pca (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.dataanalysis.ecoengine.models.cores.pca
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-tree.html index 039e0a4..6f3b6b5 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.cores.pca Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-use.html index 93f4e89..04c1998 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/cores/pca/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.models.cores.pca (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.cores.pca
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-frame.html index 272cb4f..1498e24 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-summary.html index 12b94df..5a3a4a3 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -165,6 +165,6 @@ Package org.gcube.dataanalysis.ecoengine.models
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-tree.html index 2c9a2a7..b3b5da1 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -154,6 +154,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-use.html index 4f87f69..894965e 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.models (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -185,6 +185,6 @@ Classes in FeedForwardNNFile (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -306,6 +306,15 @@ Class FeedForwardNNFile +static Image +displaySignal(double[] signal, + float timeshift) + +
+            + + +  String getDescription() @@ -610,6 +619,18 @@ public FeedForwardNNFile() +

+displaySignal

+
+public static Image displaySignal(double[] signal,
+                                  float timeshift)
+
+
+
+
+
+
+

getName

@@ -769,6 +790,6 @@ DETAIL: FIELD | 
 
 Uses of Class org.gcube.dataanalysis.ecoengine.models.testing.FeedForwardNNFile (ecological-engine 1.6.0-SNAPSHOT API)
 
 
-
+
 
 
 
@@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.testing.FeedForwardNNFile
 
 
 
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-frame.html index dfd0007..88222cd 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.testing (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-summary.html index c7ab281..1dab243 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.testing (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.dataanalysis.ecoengine.models.testing
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-tree.html index ef6cab7..fcb6253 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.models.testing Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -152,6 +152,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-use.html index 3ad5890..70e7a75 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/models/testing/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.models.testing (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.models.testing
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/LocalSimpleSplitGenerator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/LocalSimpleSplitGenerator.html index 15dbe8d..c2557dc 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/LocalSimpleSplitGenerator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/LocalSimpleSplitGenerator.html @@ -2,13 +2,13 @@ - + LocalSimpleSplitGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -896,6 +896,6 @@ DETAIL: 
FIELD |  LocalSplitGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -601,6 +601,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/RainyCloudGenerator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/RainyCloudGenerator.html index b57e366..b763abd 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/RainyCloudGenerator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/RainyCloudGenerator.html @@ -2,13 +2,13 @@ - + RainyCloudGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -436,6 +436,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/LocalSimpleSplitGenerator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/LocalSimpleSplitGenerator.html index 93d9181..eaf7bd4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/LocalSimpleSplitGenerator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/LocalSimpleSplitGenerator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.processing.LocalSimpleSplitGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.processing.LocalSimpleSplitGenerato
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/LocalSplitGenerator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/LocalSplitGenerator.html index 91b4b01..dda3083 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/LocalSplitGenerator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/LocalSplitGenerator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.processing.LocalSplitGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.processing.LocalSplitGenerator
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/RainyCloudGenerator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/RainyCloudGenerator.html index 846394c..8e6d4e7 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/RainyCloudGenerator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/class-use/RainyCloudGenerator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.processing.RainyCloudGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.processing.RainyCloudGenerator
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ClusterersFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ClusterersFactory.html index 2acd582..e24841c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ClusterersFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ClusterersFactory.html @@ -2,13 +2,13 @@ - + ClusterersFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -343,6 +343,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/EvaluatorsFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/EvaluatorsFactory.html index a1d80fe..c2c5148 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/EvaluatorsFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/EvaluatorsFactory.html @@ -2,13 +2,13 @@ - + EvaluatorsFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -343,6 +343,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/GeneratorsFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/GeneratorsFactory.html index 47645ad..02049b2 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/GeneratorsFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/GeneratorsFactory.html @@ -2,13 +2,13 @@ - + GeneratorsFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -408,6 +408,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ModelersFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ModelersFactory.html index b037418..2f4e573 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ModelersFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ModelersFactory.html @@ -2,13 +2,13 @@ - + ModelersFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -386,6 +386,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ProcessorsFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ProcessorsFactory.html index 2ceeba0..7f2b46e 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ProcessorsFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/ProcessorsFactory.html @@ -2,13 +2,13 @@ - + ProcessorsFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -433,6 +433,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/TransducerersFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/TransducerersFactory.html index 4eb15e7..3515b9c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/TransducerersFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/TransducerersFactory.html @@ -2,13 +2,13 @@ - + TransducerersFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -343,6 +343,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ClusterersFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ClusterersFactory.html index fce3913..276ff33 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ClusterersFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ClusterersFactory.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.processing.factories.ClusterersFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.processing.factories.ClusterersFact
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/EvaluatorsFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/EvaluatorsFactory.html index 0c0e09d..cb90bfb 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/EvaluatorsFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/EvaluatorsFactory.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.processing.factories.EvaluatorsFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.processing.factories.EvaluatorsFact
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/GeneratorsFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/GeneratorsFactory.html index f038f93..64a70ca 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/GeneratorsFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/GeneratorsFactory.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.processing.factories.GeneratorsFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.processing.factories.GeneratorsFact
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ModelersFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ModelersFactory.html index 9f38035..a1dbbd0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ModelersFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ModelersFactory.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.processing.factories.ModelersFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.processing.factories.ModelersFactor
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ProcessorsFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ProcessorsFactory.html index 8ecf84f..c3e13c9 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ProcessorsFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/ProcessorsFactory.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.processing.factories.ProcessorsFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.processing.factories.ProcessorsFact
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/TransducerersFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/TransducerersFactory.html index e4430cf..62a0fca 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/TransducerersFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/class-use/TransducerersFactory.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.processing.factories.TransducerersFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.processing.factories.TransducerersF
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-frame.html index 65e1618..58608a3 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.processing.factories (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-summary.html index 4ee3b36..c3c963b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.processing.factories (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -173,6 +173,6 @@ Package org.gcube.dataanalysis.ecoengine.processing.factories
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-tree.html index 750bd46..f8c9fd4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.processing.factories Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-use.html index 17acc2a..1b2d517 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/factories/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.processing.factories (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.processing.factories
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-frame.html index 9b5ff3f..cc349f4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.processing (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-summary.html index bd08f0e..9339a3e 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.processing (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -161,6 +161,6 @@ Package org.gcube.dataanalysis.ecoengine.processing
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-tree.html index eab482f..a1d8901 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.processing Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -151,6 +151,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-use.html index 01dc049..d4f127c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/processing/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.processing (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.processing
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsAlgorithmCore.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsAlgorithmCore.html index a4de82b..c4cfe5a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsAlgorithmCore.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsAlgorithmCore.html @@ -2,13 +2,13 @@ - + AquamapsAlgorithmCore (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -480,6 +480,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNN.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNN.html index dcb169e..fdbdb40 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNN.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNN.html @@ -2,13 +2,13 @@ - + AquamapsNN (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -425,6 +425,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNNNS.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNNNS.html index 25fcebd..590d2b6 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNNNS.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNNNS.html @@ -2,13 +2,13 @@ - + AquamapsNNNS (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -425,6 +425,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNNSuitable.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNNSuitable.html index fd9190d..5070eda 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNNSuitable.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNNSuitable.html @@ -2,13 +2,13 @@ - + AquamapsNNSuitable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -437,6 +437,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative.html index d5acf48..d2d7328 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative.html @@ -2,13 +2,13 @@ - + AquamapsNative (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -351,6 +351,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative2050.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative2050.html index 8925cd3..461c0ba 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative2050.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsNative2050.html @@ -2,13 +2,13 @@ - + AquamapsNative2050 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -316,6 +316,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsSuitable.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsSuitable.html index aacb452..30adcb0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsSuitable.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/AquamapsSuitable.html @@ -2,13 +2,13 @@ - + AquamapsSuitable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -871,6 +871,6 @@ DETAIL: FIELD |  AquamapsSuitable2050 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -328,6 +328,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/BayesianDistribution.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/BayesianDistribution.html index b43b498..cc49f7a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/BayesianDistribution.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/BayesianDistribution.html @@ -2,13 +2,13 @@ - + BayesianDistribution (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -228,6 +228,14 @@ Class BayesianDistribution protected static String GroupingFactor +
+            + + + +protected  File +modelFile +
            @@ -592,6 +600,16 @@ protected

+modelFile

+
+protected File modelFile
+
+
+
+
+
+

userName

@@ -905,6 +923,6 @@ DETAIL: FIELD | 
 
 DummyAlgorithm (ecological-engine 1.6.0-SNAPSHOT API)
 
 
-
+
 
 
 
@@ -656,6 +656,6 @@ DETAIL: FIELD | CONSTR |&n
 
 
 
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/FeedForwardNeuralNetworkDistribution.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/FeedForwardNeuralNetworkDistribution.html index c6e0870..b3d2a27 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/FeedForwardNeuralNetworkDistribution.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/FeedForwardNeuralNetworkDistribution.html @@ -2,13 +2,13 @@ - + FeedForwardNeuralNetworkDistribution (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -124,7 +124,7 @@ Class FeedForwardNeuralNetworkDistribution Fields inherited from class org.gcube.dataanalysis.ecoengine.spatialdistributions.BayesianDistribution -config, dbConnection, featuresTable, featuresTableColumns, FeaturesTableColumnsP, FeaturesTableP, finalTableLabel, FinalTableLabel, finalTableName, FinalTableName, FinalTableValue, FinalTableValueType, groupingFactor, GroupingFactor, modelName, ModelName, status, userName, UserName +config, dbConnection, featuresTable, featuresTableColumns, FeaturesTableColumnsP, FeaturesTableP, finalTableLabel, FinalTableLabel, finalTableName, FinalTableName, FinalTableValue, FinalTableValueType, groupingFactor, GroupingFactor, modelFile, modelName, ModelName, status, userName, UserName   @@ -361,6 +361,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/TestAlgorithm.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/TestAlgorithm.html index f7f54a0..7361526 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/TestAlgorithm.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/TestAlgorithm.html @@ -2,13 +2,13 @@ - + TestAlgorithm (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -634,6 +634,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsAlgorithmCore.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsAlgorithmCore.html index 1b36887..1953f4d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsAlgorithmCore.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsAlgorithmCore.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsAlgorithmCore (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsAlgori
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNN.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNN.html index 387d589..bd7a897 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNN.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNN.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsNN (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsNN
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNNNS.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNNNS.html index 36af1c4..dc9f2d4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNNNS.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNNNS.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsNNNS (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsNNNS
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNNSuitable.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNNSuitable.html index b3e3ecc..318355e 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNNSuitable.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNNSuitable.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsNNSuitable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsNNSuit
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNative.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNative.html index ae3a45b..1be6569 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNative.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsNative.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsNative (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -192,6 +192,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsNative2050 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsNative
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsSuitable.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsSuitable.html index 87b98e8..02d9aae 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsSuitable.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/AquamapsSuitable.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsSuitable (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -216,6 +216,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsSuitable2050 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.spatialdistributions.AquamapsSuitab
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/BayesianDistribution.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/BayesianDistribution.html index e416ed6..91b728d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/BayesianDistribution.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/BayesianDistribution.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.BayesianDistribution (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.DummyAlgorithm (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.spatialdistributions.DummyAlgorithm
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/FeedForwardNeuralNetworkDistribution.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/FeedForwardNeuralNetworkDistribution.html index fa808fe..c363598 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/FeedForwardNeuralNetworkDistribution.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/FeedForwardNeuralNetworkDistribution.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.FeedForwardNeuralNetworkDistribution (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.spatialdistributions.FeedForwardNeu
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/TestAlgorithm.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/TestAlgorithm.html index dc3a443..75624da 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/TestAlgorithm.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/class-use/TestAlgorithm.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.spatialdistributions.TestAlgorithm (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.spatialdistributions.TestAlgorithm
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-frame.html index 6792403..0fedfed 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.spatialdistributions (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-summary.html index 23762ef..d8d0003 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.spatialdistributions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -197,6 +197,6 @@ Package org.gcube.dataanalysis.ecoengine.spatialdistributions
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-tree.html index 64b38a5..042705e 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.spatialdistributions Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -159,6 +159,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-use.html index 86b9aae..4ccb073 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/spatialdistributions/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.spatialdistributions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -178,6 +178,6 @@ Classes in
PerformanceTests (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/ProduceTestMap.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/ProduceTestMap.html index 8fcf587..6b72ca0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/ProduceTestMap.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/ProduceTestMap.html @@ -2,13 +2,13 @@ - + ProduceTestMap (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -295,6 +295,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/TablesComparison.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/TablesComparison.html index 7f0fc09..d6fb7f7 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/TablesComparison.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/TablesComparison.html @@ -2,13 +2,13 @@ - + TablesComparison (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -547,6 +547,6 @@ DETAIL: FIELD |  TestsMetaInfo (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -253,6 +253,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionComplexGeneration.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionComplexGeneration.ThreadCalculator.html index 8b4914e..04eb3cf 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionComplexGeneration.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionComplexGeneration.ThreadCalculator.html @@ -2,13 +2,13 @@ - + RegressionComplexGeneration.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -257,6 +257,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionComplexGeneration.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionComplexGeneration.html index 8b0c90c..798f1cb 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionComplexGeneration.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionComplexGeneration.html @@ -2,13 +2,13 @@ - + RegressionComplexGeneration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -270,6 +270,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionSimpleGeneration.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionSimpleGeneration.ThreadCalculator.html index 452fc61..1e4c291 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionSimpleGeneration.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionSimpleGeneration.ThreadCalculator.html @@ -2,13 +2,13 @@ - + RegressionSimpleGeneration.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -257,6 +257,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionSimpleGeneration.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionSimpleGeneration.html index a66ac0a..def487d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionSimpleGeneration.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/RegressionSimpleGeneration.html @@ -2,13 +2,13 @@ - + RegressionSimpleGeneration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -270,6 +270,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBayesianModels.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBayesianModels.html index f3865fa..5f95409 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBayesianModels.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBayesianModels.html @@ -2,13 +2,13 @@ - + TestBayesianModels (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -275,6 +275,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBayesianModelsDBTest.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBayesianModelsDBTest.html index 0b71fec..a3d866c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBayesianModelsDBTest.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBayesianModelsDBTest.html @@ -2,13 +2,13 @@ - + TestBayesianModelsDBTest (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -275,6 +275,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBioClimateAnalysis.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBioClimateAnalysis.html index b3dcc58..24774f4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBioClimateAnalysis.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestBioClimateAnalysis.html @@ -2,13 +2,13 @@ - + TestBioClimateAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -273,6 +273,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestClusterer.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestClusterer.ThreadCalculator.html index 1268d2b..add9cd2 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestClusterer.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestClusterer.ThreadCalculator.html @@ -2,13 +2,13 @@ - + TestClusterer.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -257,6 +257,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestClusterer.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestClusterer.html index 7d1b788..a88b338 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestClusterer.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestClusterer.html @@ -2,13 +2,13 @@ - + TestClusterer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -270,6 +270,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestDBNEXTEvaluators.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestDBNEXTEvaluators.html index e3dcbc0..aceee14 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestDBNEXTEvaluators.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestDBNEXTEvaluators.html @@ -2,13 +2,13 @@ - + TestDBNEXTEvaluators (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestEvaluation.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestEvaluation.ThreadCalculator.html index 04b93a3..175823b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestEvaluation.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestEvaluation.ThreadCalculator.html @@ -2,13 +2,13 @@ - + TestEvaluation.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -259,6 +259,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestEvaluation.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestEvaluation.html index 4887048..1bafaf9 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestEvaluation.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestEvaluation.html @@ -2,13 +2,13 @@ - + TestEvaluation (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -270,6 +270,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestHSPECBioClimateAnalysisDev.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestHSPECBioClimateAnalysisDev.html index 1e3c55d..901234e 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestHSPECBioClimateAnalysisDev.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestHSPECBioClimateAnalysisDev.html @@ -2,13 +2,13 @@ - + TestHSPECBioClimateAnalysisDev (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestHSPECBioClimateAnalysisProd.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestHSPECBioClimateAnalysisProd.html index 36a633b..e6643cb 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestHSPECBioClimateAnalysisProd.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestHSPECBioClimateAnalysisProd.html @@ -2,13 +2,13 @@ - + TestHSPECBioClimateAnalysisProd (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestMahoutComparison.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestMahoutComparison.html index 0c244cc..d562182 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestMahoutComparison.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestMahoutComparison.html @@ -2,13 +2,13 @@ - + TestMahoutComparison (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestsHSPENTraining.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestsHSPENTraining.ThreadCalculator.html index 897fab8..6756d5d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestsHSPENTraining.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestsHSPENTraining.ThreadCalculator.html @@ -2,13 +2,13 @@ - + TestsHSPENTraining.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -259,6 +259,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestsHSPENTraining.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestsHSPENTraining.html index a18e1c1..6b4fa88 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestsHSPENTraining.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/TestsHSPENTraining.html @@ -2,13 +2,13 @@ - + TestsHSPENTraining (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -270,6 +270,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionComplexGeneration.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionComplexGeneration.ThreadCalculator.html index 15f2bdc..6aa4ea7 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionComplexGeneration.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionComplexGeneration.ThreadCalculator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.RegressionComplexGeneration.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.RegressionComplexGenera
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionComplexGeneration.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionComplexGeneration.html index 70692b2..d31b774 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionComplexGeneration.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionComplexGeneration.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.RegressionComplexGeneration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.RegressionComplexGenera
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionSimpleGeneration.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionSimpleGeneration.ThreadCalculator.html index 7da1274..2cbd9e6 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionSimpleGeneration.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionSimpleGeneration.ThreadCalculator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.RegressionSimpleGeneration.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.RegressionSimpleGenerat
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionSimpleGeneration.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionSimpleGeneration.html index c1e100a..bfd5626 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionSimpleGeneration.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/RegressionSimpleGeneration.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.RegressionSimpleGeneration (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.RegressionSimpleGenerat
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBayesianModels.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBayesianModels.html index 120f2f2..37fa53b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBayesianModels.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBayesianModels.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestBayesianModels (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestBayesianModels
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBayesianModelsDBTest.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBayesianModelsDBTest.html index b0d130d..9758ace 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBayesianModelsDBTest.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBayesianModelsDBTest.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestBayesianModelsDBTest (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestBayesianModelsDBTes
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBioClimateAnalysis.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBioClimateAnalysis.html index a64edbe..25ed3cd 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBioClimateAnalysis.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestBioClimateAnalysis.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestBioClimateAnalysis (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestBioClimateAnalysis
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestClusterer.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestClusterer.ThreadCalculator.html index 1de4e35..17b62f7 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestClusterer.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestClusterer.ThreadCalculator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestClusterer.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestClusterer.ThreadCal
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestClusterer.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestClusterer.html index 8d7f8fa..92e2da0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestClusterer.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestClusterer.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestClusterer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestClusterer
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestDBNEXTEvaluators.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestDBNEXTEvaluators.html index 19352c8..5543484 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestDBNEXTEvaluators.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestDBNEXTEvaluators.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestDBNEXTEvaluators (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestDBNEXTEvaluators
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestEvaluation.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestEvaluation.ThreadCalculator.html index 650f3da..21230ae 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestEvaluation.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestEvaluation.ThreadCalculator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestEvaluation.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestEvaluation.ThreadCa
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestEvaluation.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestEvaluation.html index dcd20ab..3618b75 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestEvaluation.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestEvaluation.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestEvaluation (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestEvaluation
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestHSPECBioClimateAnalysisDev.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestHSPECBioClimateAnalysisDev.html index 8b0d99b..bc2d757 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestHSPECBioClimateAnalysisDev.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestHSPECBioClimateAnalysisDev.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestHSPECBioClimateAnalysisDev (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestHSPECBioClimateAnal
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestHSPECBioClimateAnalysisProd.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestHSPECBioClimateAnalysisProd.html index a161e8a..2b953f9 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestHSPECBioClimateAnalysisProd.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestHSPECBioClimateAnalysisProd.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestHSPECBioClimateAnalysisProd (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestHSPECBioClimateAnal
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestMahoutComparison.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestMahoutComparison.html index 450ffd3..cad4478 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestMahoutComparison.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestMahoutComparison.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestMahoutComparison (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestMahoutComparison
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestsHSPENTraining.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestsHSPENTraining.ThreadCalculator.html index c999b7a..4dc17a5 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestsHSPENTraining.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestsHSPENTraining.ThreadCalculator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestsHSPENTraining.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestsHSPENTraining.Thre
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestsHSPENTraining.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestsHSPENTraining.html index 520b116..ea61b0f 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestsHSPENTraining.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/class-use/TestsHSPENTraining.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.checks.TestsHSPENTraining (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks.TestsHSPENTraining
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-frame.html index f9dc8f8..274e846 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.checks (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-summary.html index 486d65a..0bee2b8 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.checks (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -197,6 +197,6 @@ Package org.gcube.dataanalysis.ecoengine.test.checks
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-tree.html index d6c2ea1..e5a8122 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.checks Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -154,6 +154,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-use.html index e8c9de2..1fbec54 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/checks/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.test.checks (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.checks
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/PerformanceTests.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/PerformanceTests.html index 3b85e17..c18c9e2 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/PerformanceTests.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/PerformanceTests.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.PerformanceTests (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.PerformanceTests
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/ProduceTestMap.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/ProduceTestMap.html index c39f74d..7b1be9e 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/ProduceTestMap.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/ProduceTestMap.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.ProduceTestMap (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.ProduceTestMap
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/TablesComparison.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/TablesComparison.html index 2a45a39..27dd487 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/TablesComparison.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/TablesComparison.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.TablesComparison (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.TablesComparison
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/TestsMetaInfo.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/TestsMetaInfo.html index 4a41e9f..784a5c0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/TestsMetaInfo.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/class-use/TestsMetaInfo.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.TestsMetaInfo (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.TestsMetaInfo
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/ExperimentsForLatimeria.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/ExperimentsForLatimeria.html index 513f0b5..8b31f4e 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/ExperimentsForLatimeria.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/ExperimentsForLatimeria.html @@ -2,13 +2,13 @@ - + ExperimentsForLatimeria (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -569,6 +569,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/class-use/ExperimentsForLatimeria.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/class-use/ExperimentsForLatimeria.html index 6ff401c..6b824a4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/class-use/ExperimentsForLatimeria.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/class-use/ExperimentsForLatimeria.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.experiments.latimeria.ExperimentsForLatimeria (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.experiments.latimeria.Experime
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-frame.html index 158467a..25f1821 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.experiments.latimeria (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-summary.html index 057ab71..23c1f1c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.experiments.latimeria (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.dataanalysis.ecoengine.test.experiments.latimeria
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-tree.html index 7cdf46a..fec20b1 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.experiments.latimeria Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-use.html index 3ad260f..c7a3320 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/experiments/latimeria/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.test.experiments.latimeria (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.experiments.latimeria
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/TestNN.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/TestNN.html index 82eac8d..b0ab05a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/TestNN.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/TestNN.html @@ -2,13 +2,13 @@ - + TestNN (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -288,6 +288,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/class-use/TestNN.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/class-use/TestNN.html index d14e995..2b905db 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/class-use/TestNN.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/class-use/TestNN.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.neuralnetwork.TestNN (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.neuralnetwork.TestNN
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-frame.html index 5ea021b..eeea383 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.neuralnetwork (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-summary.html index 6985612..90a1762 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.neuralnetwork (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.dataanalysis.ecoengine.test.neuralnetwork
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-tree.html index a78ba3b..1932d33 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.neuralnetwork Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-use.html index 5cc3661..8bc44cb 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/neuralnetwork/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.test.neuralnetwork (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.neuralnetwork
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-frame.html index f59d230..e79d8ca 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-summary.html index a740571..981f3fc 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -166,6 +166,6 @@ Package org.gcube.dataanalysis.ecoengine.test
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-tree.html index f2b6dbd..7acebee 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-use.html index afdd9e8..ebc5a1e 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.test (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestClusterers.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestClusterers.html index 2a4d2ba..0a89fdd 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestClusterers.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestClusterers.html @@ -2,13 +2,13 @@ - + RegressionTestClusterers (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -253,6 +253,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestEvaluators.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestEvaluators.html index 8b93529..d35b663 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestEvaluators.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestEvaluators.html @@ -2,13 +2,13 @@ - + RegressionTestEvaluators (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -253,6 +253,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestGenerators.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestGenerators.html index 83f9099..233134a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestGenerators.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestGenerators.html @@ -2,13 +2,13 @@ - + RegressionTestGenerators (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -253,6 +253,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestModelers.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestModelers.html index 9dfec09..050a00b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestModelers.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestModelers.html @@ -2,13 +2,13 @@ - + RegressionTestModelers (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -253,6 +253,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestTransducers.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestTransducers.html index fd816a3..362d8f2 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestTransducers.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/RegressionTestTransducers.html @@ -2,13 +2,13 @@ - + RegressionTestTransducers (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/Regressor.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/Regressor.ThreadCalculator.html index 3091cc9..bd9a4da 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/Regressor.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/Regressor.ThreadCalculator.html @@ -2,13 +2,13 @@ - + Regressor.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -257,6 +257,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/Regressor.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/Regressor.html index 37d95b9..01558e3 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/Regressor.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/Regressor.html @@ -2,13 +2,13 @@ - + Regressor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -287,6 +287,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestClusterers.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestClusterers.html index 1d8c627..ae68aec 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestClusterers.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestClusterers.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.regression.RegressionTestClusterers (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.regression.RegressionTestClust
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestEvaluators.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestEvaluators.html index eb76d6c..c8ceb49 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestEvaluators.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestEvaluators.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.regression.RegressionTestEvaluators (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.regression.RegressionTestEvalu
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestGenerators.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestGenerators.html index 532aa47..b853a85 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestGenerators.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestGenerators.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.regression.RegressionTestGenerators (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.regression.RegressionTestGener
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestModelers.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestModelers.html index cf9343c..c0fb776 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestModelers.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestModelers.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.regression.RegressionTestModelers (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.regression.RegressionTestModel
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestTransducers.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestTransducers.html index 4a2f4f6..05abf6b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestTransducers.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/RegressionTestTransducers.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.regression.RegressionTestTransducers (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.regression.RegressionTestTrans
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/Regressor.ThreadCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/Regressor.ThreadCalculator.html index 97153c4..a29cc60 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/Regressor.ThreadCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/Regressor.ThreadCalculator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.regression.Regressor.ThreadCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.regression.Regressor.ThreadCal
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/Regressor.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/Regressor.html index dfd4428..f2b93bc 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/Regressor.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/class-use/Regressor.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.regression.Regressor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.regression.Regressor
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-frame.html index e9ffe57..5a781e0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.regression (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-summary.html index 4ba7d88..b4f39d8 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.regression (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -173,6 +173,6 @@ Package org.gcube.dataanalysis.ecoengine.test.regression
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-tree.html index 3ef0724..9e1c642 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.regression Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -150,6 +150,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-use.html index e43fcf4..32fd4de 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/regression/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.test.regression (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.regression
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/TrainProduceTestMap.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/TrainProduceTestMap.html index a2efc10..7c2505b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/TrainProduceTestMap.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/TrainProduceTestMap.html @@ -2,13 +2,13 @@ - + TrainProduceTestMap (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -251,6 +251,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/class-use/TrainProduceTestMap.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/class-use/TrainProduceTestMap.html index f0518ec..2d982bd 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/class-use/TrainProduceTestMap.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/class-use/TrainProduceTestMap.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.test.trainers.TrainProduceTestMap (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.trainers.TrainProduceTestMap
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-frame.html index 5cd84cd..e559cc3 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.trainers (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-summary.html index e500e34..d8ede18 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.trainers (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.dataanalysis.ecoengine.test.trainers
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-tree.html index 5ae4f8e..005495a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.test.trainers Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-use.html index 29e7179..9bcc7b7 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/test/trainers/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.test.trainers (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.test.trainers
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/BioClimateHCAFTransducer.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/BioClimateHCAFTransducer.html index 252f824..f0ec067 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/BioClimateHCAFTransducer.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/BioClimateHCAFTransducer.html @@ -2,13 +2,13 @@ - + BioClimateHCAFTransducer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -354,6 +354,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/BioClimateHSPECTransducer.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/BioClimateHSPECTransducer.html index 49dc17b..4b98e25 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/BioClimateHSPECTransducer.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/BioClimateHSPECTransducer.html @@ -2,13 +2,13 @@ - + BioClimateHSPECTransducer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -573,6 +573,6 @@ DETAIL: FIELD |  BioClimateHSPENTransducer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -354,6 +354,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/InterpolationTransducer.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/InterpolationTransducer.html index 93f63a2..d00f5ea 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/InterpolationTransducer.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/InterpolationTransducer.html @@ -2,13 +2,13 @@ - + InterpolationTransducer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -552,6 +552,6 @@ DETAIL: FIELD |  OccurrencePointsDuplicatesDeleter (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -262,7 +262,7 @@ Class OccurrencePointsDuplicatesDeleter Methods inherited from class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsMerger -compute, convert2conventionalFormat, extProb, extractColumnNames, getInfrastructure, getNumLeftObjects, getNumRightObjects, getOutput, getResourceLoad, getResources, getStatus, initDB, main, manageHighProbability, manageLowProbability, occurrenceRecord2String, persist, probabilityDates, probabilityStrings, row2OccurrenceRecord, setConfiguration, shutdown +compute, convert2conventionalFormat, extProb, extractColumnNames, getInfrastructure, getNumLeftObjects, getNumRightObjects, getOutput, getResourceLoad, getResources, getStatus, initDB, insertBuffer, main, manageHighProbability, manageLowProbability, occurrenceRecord2String, persist, probabilityDates, probabilityStrings, row2OccurrenceRecord, setConfiguration, shutdown, takeEssential   @@ -516,6 +516,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsInSeaOnEarth.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsInSeaOnEarth.html index a9af1b4..15184fd 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsInSeaOnEarth.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsInSeaOnEarth.html @@ -2,13 +2,13 @@ - + OccurrencePointsInSeaOnEarth (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -226,7 +226,7 @@ Class OccurrencePointsInSeaOnEarth Methods inherited from class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsMerger -computeRange, convert2conventionalFormat, extProb, extractColumnNames, getInfrastructure, getNumLeftObjects, getNumRightObjects, getOutput, getResourceLoad, getResources, getStatus, initDB, main, manageHighProbability, manageLowProbability, occurrenceRecord2String, persist, postProcess, probabilityDates, probabilityStrings, row2OccurrenceRecord, setConfiguration, shutdown, takeFullRanges, takeRange +computeRange, convert2conventionalFormat, extProb, extractColumnNames, getInfrastructure, getNumLeftObjects, getNumRightObjects, getOutput, getResourceLoad, getResources, getStatus, initDB, insertBuffer, main, manageHighProbability, manageLowProbability, occurrenceRecord2String, persist, postProcess, probabilityDates, probabilityStrings, row2OccurrenceRecord, setConfiguration, shutdown, takeEssential, takeFullRanges, takeRange   @@ -406,6 +406,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsInSeaOnEarth.inseasonearth.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsInSeaOnEarth.inseasonearth.html index 8a2361f..1d20a22 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsInSeaOnEarth.inseasonearth.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsInSeaOnEarth.inseasonearth.html @@ -2,13 +2,13 @@ - + OccurrencePointsInSeaOnEarth.inseasonearth (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -321,6 +321,6 @@ DETAIL: ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsIntersector.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsIntersector.html index 3dca7aa..94cf5a4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsIntersector.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsIntersector.html @@ -2,13 +2,13 @@ - + OccurrencePointsIntersector (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -222,7 +222,7 @@ Class OccurrencePointsIntersector Methods inherited from class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsMerger -compute, computeRange, convert2conventionalFormat, extProb, extractColumnNames, getInfrastructure, getInputParameters, getNumLeftObjects, getNumRightObjects, getOutput, getResourceLoad, getResources, getStatus, init, initDB, occurrenceRecord2String, persist, postProcess, probabilityDates, probabilityStrings, row2OccurrenceRecord, setConfiguration, shutdown, takeFullRanges, takeRange +compute, computeRange, convert2conventionalFormat, extProb, extractColumnNames, getInfrastructure, getInputParameters, getNumLeftObjects, getNumRightObjects, getOutput, getResourceLoad, getResources, getStatus, init, initDB, insertBuffer, occurrenceRecord2String, persist, postProcess, probabilityDates, probabilityStrings, row2OccurrenceRecord, setConfiguration, shutdown, takeEssential, takeFullRanges, takeRange   @@ -400,6 +400,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsMerger.OccurrenceRecord.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsMerger.OccurrenceRecord.html index 85406e4..265286a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsMerger.OccurrenceRecord.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/OccurrencePointsMerger.OccurrenceRecord.html @@ -2,13 +2,13 @@ - + OccurrencePointsMerger.OccurrenceRecord (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -403,6 +403,6 @@ DETAIL: FIELD |  OccurrencePointsMerger (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -600,6 +600,14 @@ Class OccurrencePointsMerger  void initDB(boolean buildTable) +
+            + + + +protected  void +insertBuffer(StringBuffer buffer) +
            @@ -702,6 +710,14 @@ Class OccurrencePointsMerger  void shutdown() +
+            + + + +protected  String +takeEssential(OccurrencePointsMerger.OccurrenceRecord record) +
            @@ -1191,6 +1207,20 @@ public

+takeEssential

+
+protected String takeEssential(OccurrencePointsMerger.OccurrenceRecord record)
+
+
+
+
+
+
+
+
+
+

occurrenceRecord2String

@@ -1428,6 +1458,23 @@ protected void persist()
 
 
+

+insertBuffer

+
+protected void insertBuffer(StringBuffer buffer)
+                     throws Exception
+
+
+
+
+
+ +
Throws: +
Exception
+
+
+
+

prepareFinalTable

@@ -1679,6 +1726,6 @@ DETAIL: FIELD | 
 
 OccurrencePointsSubtraction (ecological-engine 1.6.0-SNAPSHOT API)
 
 
-
+
 
 
 
@@ -206,7 +206,7 @@ Class OccurrencePointsSubtraction
 Methods inherited from class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsMerger
 
 
-compute, computeRange, convert2conventionalFormat, extProb, extractColumnNames, getInfrastructure, getInputParameters, getNumLeftObjects, getNumRightObjects, getOutput, getResourceLoad, getResources, getStatus, init, initDB, main, occurrenceRecord2String, persist, postProcess, prepareFinalTable, probabilityDates, probabilityStrings, row2OccurrenceRecord, setConfiguration, shutdown, takeFullRanges, takeRange
+compute, computeRange, convert2conventionalFormat, extProb, extractColumnNames, getInfrastructure, getInputParameters, getNumLeftObjects, getNumRightObjects, getOutput, getResourceLoad, getResources, getStatus, init, initDB, insertBuffer, main, occurrenceRecord2String, persist, postProcess, prepareFinalTable, probabilityDates, probabilityStrings, row2OccurrenceRecord, setConfiguration, shutdown, takeEssential, takeFullRanges, takeRange
 
 
  
@@ -353,6 +353,6 @@ DETAIL: FIELD | CONSTR |&n
 
 
 
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/QueryExecutor.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/QueryExecutor.html index 52dd1d5..63c008a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/QueryExecutor.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/QueryExecutor.html @@ -2,13 +2,13 @@ - + QueryExecutor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -627,6 +627,6 @@ DETAIL: FIELD |  TestTrans (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -480,6 +480,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/BioClimateHCAFTransducer.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/BioClimateHCAFTransducer.html index 41a9141..0fe19ec 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/BioClimateHCAFTransducer.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/BioClimateHCAFTransducer.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.BioClimateHCAFTransducer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.BioClimateHCAFTransduce
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/BioClimateHSPECTransducer.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/BioClimateHSPECTransducer.html index ff0aced..daa4c23 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/BioClimateHSPECTransducer.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/BioClimateHSPECTransducer.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.BioClimateHSPECTransducer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -184,6 +184,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.transducers.BioClimateHSPENTransducer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.BioClimateHSPENTransduc
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/InterpolationTransducer.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/InterpolationTransducer.html index 717b829..3f20def 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/InterpolationTransducer.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/InterpolationTransducer.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.InterpolationTransducer (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.InterpolationTransducer
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsDuplicatesDeleter.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsDuplicatesDeleter.html index 5459189..dc7513c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsDuplicatesDeleter.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsDuplicatesDeleter.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsDuplicatesDeleter (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsDuplica
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsInSeaOnEarth.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsInSeaOnEarth.html index 65b53bb..9caffba 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsInSeaOnEarth.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsInSeaOnEarth.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsInSeaOnEarth (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsInSeaOn
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsInSeaOnEarth.inseasonearth.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsInSeaOnEarth.inseasonearth.html index b465d94..b7ded03 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsInSeaOnEarth.inseasonearth.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsInSeaOnEarth.inseasonearth.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsInSeaOnEarth.inseasonearth (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -185,6 +185,6 @@ the order they are declared.
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsIntersector.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsIntersector.html index 7137858..777de99 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsIntersector.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsIntersector.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsIntersector (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsInterse
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsMerger.OccurrenceRecord.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsMerger.OccurrenceRecord.html index 8577a07..af0f018 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsMerger.OccurrenceRecord.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/OccurrencePointsMerger.OccurrenceRecord.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsMerger.OccurrenceRecord (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -250,6 +250,14 @@ Uses of
String OccurrencePointsMerger.occurrenceRecord2String(OccurrencePointsMerger.OccurrenceRecord record) +
+            + + + +protected  String +OccurrencePointsMerger.takeEssential(OccurrencePointsMerger.OccurrenceRecord record) +
            @@ -310,6 +318,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsMerger (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -200,6 +200,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsSubtraction (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.OccurrencePointsSubtrac
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/QueryExecutor.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/QueryExecutor.html index f57befe..5912a36 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/QueryExecutor.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/class-use/QueryExecutor.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.QueryExecutor (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -200,6 +200,6 @@ Uses of
Uses of Class org.gcube.dataanalysis.ecoengine.transducers.TestTrans (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.TestTrans
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-frame.html index 2b387a8..5d7499b 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.transducers (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-summary.html index 0eb0900..1dd1e4c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.transducers (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -207,6 +207,6 @@ Package org.gcube.dataanalysis.ecoengine.transducers
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-tree.html index 29401ee..7451a6c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.transducers Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -168,6 +168,6 @@ Enum Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-use.html index 5b58e4a..a103bf0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.transducers (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -203,6 +203,6 @@ Classes in
HcafFilter (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -351,6 +351,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/HspenFilter.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/HspenFilter.html index 50ece47..628464a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/HspenFilter.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/HspenFilter.html @@ -2,13 +2,13 @@ - + HspenFilter (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -351,6 +351,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/MarineAbsencePointsFromAquamapsDistribution.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/MarineAbsencePointsFromAquamapsDistribution.html index a26c1e7..3637227 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/MarineAbsencePointsFromAquamapsDistribution.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/MarineAbsencePointsFromAquamapsDistribution.html @@ -2,13 +2,13 @@ - + MarineAbsencePointsFromAquamapsDistribution (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -351,6 +351,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/MarinePresencePoints.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/MarinePresencePoints.html index da7acda..28e8fb0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/MarinePresencePoints.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/MarinePresencePoints.html @@ -2,13 +2,13 @@ - + MarinePresencePoints (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -351,6 +351,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/HcafFilter.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/HcafFilter.html index 2ae8245..0e3a5cc 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/HcafFilter.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/HcafFilter.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors.HcafFilter (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors.Hc
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/HspenFilter.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/HspenFilter.html index 74a1df9..f3b7cdd 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/HspenFilter.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/HspenFilter.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors.HspenFilter (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors.Hs
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/MarineAbsencePointsFromAquamapsDistribution.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/MarineAbsencePointsFromAquamapsDistribution.html index fddc10d..314cd11 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/MarineAbsencePointsFromAquamapsDistribution.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/MarineAbsencePointsFromAquamapsDistribution.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors.MarineAbsencePointsFromAquamapsDistribution (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors.Ma
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/MarinePresencePoints.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/MarinePresencePoints.html index a9fa7c4..7f0adfa 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/MarinePresencePoints.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/class-use/MarinePresencePoints.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors.MarinePresencePoints (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors.Ma
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-frame.html index 9d88d9e..29ee851 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-summary.html index ecd3709..78402b6 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -165,6 +165,6 @@ Package org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-tree.html index b530c06..59f5029 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -152,6 +152,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-use.html index a5477e1..c6d4ee8 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/transducers/simplequeryexecutors/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.transducers.simplequeryexecutors
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/EvaluatorT.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/EvaluatorT.html index 3276bb3..752ac0c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/EvaluatorT.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/EvaluatorT.html @@ -2,13 +2,13 @@ - + EvaluatorT (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -361,6 +361,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/GeneratorT.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/GeneratorT.html index d39ee05..d41c518 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/GeneratorT.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/GeneratorT.html @@ -2,13 +2,13 @@ - + GeneratorT (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -317,6 +317,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/ModelerT.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/ModelerT.html index d15de1d..9297b72 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/ModelerT.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/ModelerT.html @@ -2,13 +2,13 @@ - + ModelerT (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -347,6 +347,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/EvaluatorT.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/EvaluatorT.html index 4d36599..221317d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/EvaluatorT.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/EvaluatorT.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.user.EvaluatorT (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.user.EvaluatorT
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/GeneratorT.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/GeneratorT.html index 27b4464..307ff8a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/GeneratorT.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/GeneratorT.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.user.GeneratorT (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.user.GeneratorT
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/ModelerT.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/ModelerT.html index f94a5f7..00be8a3 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/ModelerT.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/class-use/ModelerT.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.user.ModelerT (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.user.ModelerT
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-frame.html index e08baff..c90a38d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.user (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-summary.html index 75e49ad..13f8ede 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.user (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -161,6 +161,6 @@ Package org.gcube.dataanalysis.ecoengine.user
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-tree.html index 32a59e3..3d77765 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.user Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -152,6 +152,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-use.html index 0f3ff93..eb1a61f 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/user/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.user (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.user
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/DatabaseFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/DatabaseFactory.html index 6348db9..2d1dccc 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/DatabaseFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/DatabaseFactory.html @@ -2,13 +2,13 @@ - + DatabaseFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -541,6 +541,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/DatabaseUtils.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/DatabaseUtils.html index a438875..1f9331c 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/DatabaseUtils.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/DatabaseUtils.html @@ -2,13 +2,13 @@ - + DatabaseUtils (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -353,6 +353,16 @@ Class DatabaseUtils String columnsNames, StringBuffer values) +
+            + + + +static String +insertFromString(String table, + String columnsNames, + String values) +
            @@ -683,6 +693,19 @@ public static

+insertFromString

+
+public static String insertFromString(String table,
+                                      String columnsNames,
+                                      String values)
+
+
+
+
+
+
+

deleteFromBuffer

@@ -882,6 +905,6 @@ DETAIL: FIELD | 
 
 HspecDiscrepanciesCalculator (ecological-engine 1.6.0-SNAPSHOT API)
 
 
-
+
 
 
 
@@ -592,6 +592,6 @@ DETAIL: FIELD | 
 
 Operations (ecological-engine 1.6.0-SNAPSHOT API)
 
 
-
+
 
 
 
@@ -762,6 +762,6 @@ DETAIL: FIELD | 
 
 PresetConfigGenerator (ecological-engine 1.6.0-SNAPSHOT API)
 
 
-
+
 
 
 
@@ -548,6 +548,6 @@ DETAIL: FIELD | CONSTR |&n
 
 
 
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/ResourceFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/ResourceFactory.html index e51159e..db94d87 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/ResourceFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/ResourceFactory.html @@ -2,13 +2,13 @@ - + ResourceFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -343,6 +343,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Sha1.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Sha1.html index e149d54..5302abe 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Sha1.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Sha1.html @@ -2,13 +2,13 @@ - + Sha1 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -291,6 +291,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/TablesDiscrepanciesCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/TablesDiscrepanciesCalculator.html index 05c6cf9..310be6d 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/TablesDiscrepanciesCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/TablesDiscrepanciesCalculator.html @@ -2,13 +2,13 @@ - + TablesDiscrepanciesCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -547,6 +547,6 @@ DETAIL: FIELD |  TrainingSetsGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -273,6 +273,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Transformations.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Transformations.html index 386609a..e935e42 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Transformations.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Transformations.html @@ -2,13 +2,13 @@ - + Transformations (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -503,6 +503,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Tuple.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Tuple.html index 646435c..0ac175f 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Tuple.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/Tuple.html @@ -2,13 +2,13 @@ - + Tuple (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -278,6 +278,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/DatabaseFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/DatabaseFactory.html index 352c07f..e555ba0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/DatabaseFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/DatabaseFactory.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.utils.DatabaseFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.utils.DatabaseFactory
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/DatabaseUtils.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/DatabaseUtils.html index 5554e20..bea1d72 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/DatabaseUtils.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/DatabaseUtils.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.utils.DatabaseUtils (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.utils.DatabaseUtils
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/HspecDiscrepanciesCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/HspecDiscrepanciesCalculator.html index 5f22fee..b0b8cf8 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/HspecDiscrepanciesCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/HspecDiscrepanciesCalculator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.utils.HspecDiscrepanciesCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.utils.HspecDiscrepanciesCalculator
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Operations.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Operations.html index eb8c2c7..14106ec 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Operations.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Operations.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.utils.Operations (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.utils.Operations
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/PresetConfigGenerator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/PresetConfigGenerator.html index eb1171c..14906bb 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/PresetConfigGenerator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/PresetConfigGenerator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.utils.PresetConfigGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.utils.PresetConfigGenerator
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/ResourceFactory.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/ResourceFactory.html index d85ef1c..f8ad4d0 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/ResourceFactory.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/ResourceFactory.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.utils.ResourceFactory (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -176,6 +176,6 @@ Uses of Uses of Class org.gcube.dataanalysis.ecoengine.utils.Sha1 (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.utils.Sha1
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/TablesDiscrepanciesCalculator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/TablesDiscrepanciesCalculator.html index 67de362..1ee86ef 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/TablesDiscrepanciesCalculator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/TablesDiscrepanciesCalculator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.utils.TablesDiscrepanciesCalculator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.utils.TablesDiscrepanciesCalculator
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/TrainingSetsGenerator.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/TrainingSetsGenerator.html index 67b1b2b..23ec022 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/TrainingSetsGenerator.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/TrainingSetsGenerator.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.utils.TrainingSetsGenerator (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.utils.TrainingSetsGenerator
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Transformations.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Transformations.html index dfe5b6a..e81bfaa 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Transformations.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Transformations.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.utils.Transformations (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.utils.Transformations
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Tuple.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Tuple.html index 4002756..73422bd 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Tuple.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/class-use/Tuple.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.dataanalysis.ecoengine.utils.Tuple (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.dataanalysis.ecoengine.utils.Tuple
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-frame.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-frame.html index 04b251b..ad24d1a 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-frame.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.utils (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-summary.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-summary.html index 324e101..782e4d4 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-summary.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.utils (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -195,6 +195,6 @@ Package org.gcube.dataanalysis.ecoengine.utils
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-tree.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-tree.html index 48970f3..fe35c54 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-tree.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.dataanalysis.ecoengine.utils Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -150,6 +150,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-use.html b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-use.html index 6e76155..fd9aa8f 100644 --- a/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-use.html +++ b/target/apidocs/org/gcube/dataanalysis/ecoengine/utils/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.dataanalysis.ecoengine.utils (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -166,6 +166,6 @@ Classes in
Assertion (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -293,6 +293,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/class-use/Assertion.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/class-use/Assertion.html index 5ec267f..c6d68cc 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/class-use/Assertion.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/class-use/Assertion.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.portlets.user.timeseries.charts.support.assertions.Assertion (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.portlets.user.timeseries.charts.support.assertions.Asserti
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-frame.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-frame.html index 503f631..62c43cd 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-frame.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.assertions (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-summary.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-summary.html index 6ff9013..7abd30e 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-summary.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.assertions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.portlets.user.timeseries.charts.support.assertions
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-tree.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-tree.html index 26aad3a..6cba9ec 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-tree.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.assertions Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -150,6 +150,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-use.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-use.html index 15d2731..67f8392 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-use.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/assertions/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.portlets.user.timeseries.charts.support.assertions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.portlets.user.timeseries.charts.support.assertions
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/InvalidParameterException.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/InvalidParameterException.html index 8dcac8a..0ff52b7 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/InvalidParameterException.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/InvalidParameterException.html @@ -2,13 +2,13 @@ - + InvalidParameterException (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -282,6 +282,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/class-use/InvalidParameterException.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/class-use/InvalidParameterException.html index f0bbfdf..704fc49 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/class-use/InvalidParameterException.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/class-use/InvalidParameterException.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.portlets.user.timeseries.charts.support.exceptions.InvalidParameterException (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -326,6 +326,6 @@ Uses of org.gcube.portlets.user.timeseries.charts.support.exceptions (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-summary.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-summary.html index b29edf1..079ec74 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-summary.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.exceptions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.portlets.user.timeseries.charts.support.exceptions
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-tree.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-tree.html index ce29cbc..8e95f71 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-tree.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.exceptions Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -154,6 +154,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-use.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-use.html index 35a3da7..d2bbe37 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-use.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/exceptions/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.portlets.user.timeseries.charts.support.exceptions (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -185,6 +185,6 @@ Classes in
FieldDescr (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -405,6 +405,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/FieldType.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/FieldType.html index f092514..0562e29 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/FieldType.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/FieldType.html @@ -2,13 +2,13 @@ - + FieldType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -398,6 +398,6 @@ DETAIL: ENUM CONSTANTS | FIEL
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/TableDescr.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/TableDescr.html index 6e2a3a9..2784d2f 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/TableDescr.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/TableDescr.html @@ -2,13 +2,13 @@ - + TableDescr (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -397,6 +397,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/class-use/FieldDescr.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/class-use/FieldDescr.html index d50eb3a..bc0df48 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/class-use/FieldDescr.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/class-use/FieldDescr.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.portlets.user.timeseries.charts.support.tablemodel.FieldDescr (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -192,6 +192,6 @@ Uses of Uses of Class org.gcube.portlets.user.timeseries.charts.support.tablemodel.FieldType (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -208,6 +208,6 @@ the order they are declared.
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/class-use/TableDescr.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/class-use/TableDescr.html index fff4b96..5dc3e95 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/class-use/TableDescr.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/class-use/TableDescr.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.portlets.user.timeseries.charts.support.tablemodel.TableDescr (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.portlets.user.timeseries.charts.support.tablemodel.TableDe
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-frame.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-frame.html index 5716725..f105f4b 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-frame.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.tablemodel (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-summary.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-summary.html index 9923fd6..2df8135 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-summary.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.tablemodel (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -171,6 +171,6 @@ Package org.gcube.portlets.user.timeseries.charts.support.tablemodel
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-tree.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-tree.html index 27c0c9a..7160f07 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-tree.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.tablemodel Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -162,6 +162,6 @@ Enum Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-use.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-use.html index 404f05e..a64fc92 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-use.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tablemodel/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.portlets.user.timeseries.charts.support.tablemodel (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -172,6 +172,6 @@ Classes in
GenerateDataTest (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -271,6 +271,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/class-use/GenerateDataTest.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/class-use/GenerateDataTest.html index b5869fc..a8939a5 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/class-use/GenerateDataTest.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/class-use/GenerateDataTest.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.portlets.user.timeseries.charts.support.tests.GenerateDataTest (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.portlets.user.timeseries.charts.support.tests.GenerateData
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-frame.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-frame.html index 3968597..f00d138 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-frame.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-frame.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.tests (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-summary.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-summary.html index 398fee5..fed2238 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-summary.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.tests (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Package org.gcube.portlets.user.timeseries.charts.support.tests
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-tree.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-tree.html index a2f4b3d..575843a 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-tree.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.tests Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -149,6 +149,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-use.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-use.html index aefa691..ceda128 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-use.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/tests/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.portlets.user.timeseries.charts.support.tests (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -140,6 +140,6 @@ No usage of org.gcube.portlets.user.timeseries.charts.support.tests
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/GraphData.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/GraphData.html index 7e0d4b2..b6fc191 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/GraphData.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/GraphData.html @@ -2,13 +2,13 @@ - + GraphData (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -357,6 +357,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/GraphGroups.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/GraphGroups.html index 2a62cd1..f6296cc 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/GraphGroups.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/GraphGroups.html @@ -2,13 +2,13 @@ - + GraphGroups (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -282,6 +282,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/Point.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/Point.html index 49932c9..82e3769 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/Point.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/Point.html @@ -2,13 +2,13 @@ - + Point (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -528,6 +528,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/ValueEntry.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/ValueEntry.html index 5de1be8..bbc8376 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/ValueEntry.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/ValueEntry.html @@ -2,13 +2,13 @@ - + ValueEntry (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -384,6 +384,6 @@ DETAIL: FIELD | CONSTR |&n
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/class-use/GraphData.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/class-use/GraphData.html index ce95b8b..9f29d8f 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/class-use/GraphData.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/class-use/GraphData.html @@ -2,13 +2,13 @@ - + Uses of Class org.gcube.portlets.user.timeseries.charts.support.types.GraphData (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -312,6 +312,6 @@ Uses of Uses of Class org.gcube.portlets.user.timeseries.charts.support.types.GraphGroups (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -338,6 +338,6 @@ Uses of Uses of Class org.gcube.portlets.user.timeseries.charts.support.types.Point (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -428,6 +428,6 @@ Uses of Uses of Class org.gcube.portlets.user.timeseries.charts.support.types.ValueEntry (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -223,6 +223,6 @@ Uses of org.gcube.portlets.user.timeseries.charts.support.types (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-summary.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-summary.html index cd332c5..16de1ce 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-summary.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-summary.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.types (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -166,6 +166,6 @@ Package org.gcube.portlets.user.timeseries.charts.support.types
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-tree.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-tree.html index b34d8e1..48d0e0a 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-tree.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-tree.html @@ -2,13 +2,13 @@ - + org.gcube.portlets.user.timeseries.charts.support.types Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -153,6 +153,6 @@ Class Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-use.html b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-use.html index 20e674a..4173310 100644 --- a/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-use.html +++ b/target/apidocs/org/gcube/portlets/user/timeseries/charts/support/types/package-use.html @@ -2,13 +2,13 @@ - + Uses of Package org.gcube.portlets.user.timeseries.charts.support.types (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -336,6 +336,6 @@ Classes in
Overview List (ecological-engine 1.6.0-SNAPSHOT API) - + diff --git a/target/apidocs/overview-summary.html b/target/apidocs/overview-summary.html index 272cb50..b5981f3 100644 --- a/target/apidocs/overview-summary.html +++ b/target/apidocs/overview-summary.html @@ -2,13 +2,13 @@ - + Overview (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -380,6 +380,6 @@ ecological-engine 1.6.0-SNAPSHOT API
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/overview-tree.html b/target/apidocs/overview-tree.html index a41fe83..b9044d0 100644 --- a/target/apidocs/overview-tree.html +++ b/target/apidocs/overview-tree.html @@ -2,13 +2,13 @@ - + Class Hierarchy (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -307,6 +307,6 @@ Enum Hierarchy
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/apidocs/serialized-form.html b/target/apidocs/serialized-form.html index 28848ed..5899a4e 100644 --- a/target/apidocs/serialized-form.html +++ b/target/apidocs/serialized-form.html @@ -2,13 +2,13 @@ - + Serialized Form (ecological-engine 1.6.0-SNAPSHOT API) - + @@ -2304,6 +2304,6 @@ value
-Copyright © 2012. All Rights Reserved. +Copyright © 2013. All Rights Reserved. diff --git a/target/ecological-engine-1.6.0-SNAPSHOT-javadoc.jar b/target/ecological-engine-1.6.0-SNAPSHOT-javadoc.jar index d455274..2af5d4f 100644 Binary files a/target/ecological-engine-1.6.0-SNAPSHOT-javadoc.jar and b/target/ecological-engine-1.6.0-SNAPSHOT-javadoc.jar differ diff --git a/target/ecological-engine-1.6.0-SNAPSHOT-servicearchive.tar.gz b/target/ecological-engine-1.6.0-SNAPSHOT-servicearchive.tar.gz index 3699295..1ac3c78 100644 Binary files a/target/ecological-engine-1.6.0-SNAPSHOT-servicearchive.tar.gz and b/target/ecological-engine-1.6.0-SNAPSHOT-servicearchive.tar.gz differ diff --git a/target/ecological-engine-1.6.0-SNAPSHOT-sources.jar b/target/ecological-engine-1.6.0-SNAPSHOT-sources.jar index d43312b..b3d9af3 100644 Binary files a/target/ecological-engine-1.6.0-SNAPSHOT-sources.jar and b/target/ecological-engine-1.6.0-SNAPSHOT-sources.jar differ diff --git a/target/ecological-engine-1.6.0-SNAPSHOT.jar b/target/ecological-engine-1.6.0-SNAPSHOT.jar index e8289a0..d306604 100644 Binary files a/target/ecological-engine-1.6.0-SNAPSHOT.jar and b/target/ecological-engine-1.6.0-SNAPSHOT.jar differ