diff --git a/docs/allclasses-index.html b/docs/allclasses-index.html index a64ac7c..99ead1a 100644 --- a/docs/allclasses-index.html +++ b/docs/allclasses-index.html @@ -1,18 +1,18 @@ - + All Classes and Interfaces (trace-boosting 1.0.0 API) - - - - - + + + + + - - + + + + + - - + + + + + - - + + + + + - - + + + + + + + + + + + +
+ +
+
+ +
+ +

Class TraceBoosting

+
+
java.lang.Object +
org.variantsync.boosting.TraceBoosting
+
+
+
+
+
public class TraceBoosting +extends Object
+
The TraceBoosting class encapsulates the algorithm for enhancing + retroactive comparison-based feature tracing with proactively collected feature traces. + It is designed to work with a set of product variants and their associated + feature traces to produce a more accurate and efficient tracing process. + The algorithm is inspired by the ECCO tracing algorithm + and is tailored to improve it by utilizing additional trace information. + +

+ Usage example: +

+ +

+ // Initialize a list to hold ProductPassport objects that describe the
+ // artifact locations for each variant
+ List<ProductPassport> productPassports = new ArrayList<>();
+
+ // Iterate the collection of variants
+ for (Variant variant : variants) {
+     String variantName = variant.getName();
+     // Create a new ProductPassport for the variant and add it to the list
+     productPassports.add(new ProductPassport(variantName,
+             variantsDirectory.resolve(variantName), configFileMap.get(variantName)));
+ }
+
+ // Instantiate the TraceBoosting algorithm with the product passports,
+ // working directory, and the supported language for tracing.
+ // LINES creates a simple line-based AST that is language-agnostic.
+ TraceBoosting traceBoosting = new TraceBoosting(productPassports,
+         workingDirectory, ESupportedLanguages.LINES);
+
+ // Retrieve the list of products from the TraceBoosting instance
+ List<Product> products = traceBoosting.getProducts();
+
+ // Apply the proactively collected traces to the products
+ distributeMappings(products, variantGenerationResult.variantGroundTruthMap(),
+         percentage, config.getStrip());
+
+ // Compute the main tree which represents the AST resulting from merging all variants
+ // together with feature traces
+ MainTree mainTree = traceBoosting.compute();
+ 
+ +

+ Note: The actual implementation of methods like distributeMappings + and compute are not shown in this example and should be defined + elsewhere in the codebase. +

+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/class-use/TraceBoosting.html b/docs/org/variantsync/boosting/class-use/TraceBoosting.html new file mode 100644 index 0000000..fe27a67 --- /dev/null +++ b/docs/org/variantsync/boosting/class-use/TraceBoosting.html @@ -0,0 +1,58 @@ + + + + +Uses of Class org.variantsync.boosting.TraceBoosting (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.TraceBoosting

+
+No usage of org.variantsync.boosting.TraceBoosting
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/ASTNode.NODE_TYPE.html b/docs/org/variantsync/boosting/datastructure/ASTNode.NODE_TYPE.html new file mode 100644 index 0000000..b896304 --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/ASTNode.NODE_TYPE.html @@ -0,0 +1,416 @@ + + + + +ASTNode.NODE_TYPE (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class ASTNode.NODE_TYPE

+
+
java.lang.Object +
java.lang.Enum<ASTNode.NODE_TYPE> +
org.variantsync.boosting.datastructure.ASTNode.NODE_TYPE
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<ASTNode.NODE_TYPE>, Constable
+
+
+
Enclosing class:
+
ASTNode
+
+
+
public static enum ASTNode.NODE_TYPE +extends Enum<ASTNode.NODE_TYPE>
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/ASTNode.html b/docs/org/variantsync/boosting/datastructure/ASTNode.html new file mode 100644 index 0000000..cc7e313 --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/ASTNode.html @@ -0,0 +1,402 @@ + + + + +ASTNode (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ASTNode

+
+
java.lang.Object +
org.variantsync.boosting.datastructure.ASTNode
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class ASTNode +extends Object +implements Serializable
+
Represents a node in an Abstract Syntax Tree (AST). + + Each ASTNode contains information about a specific code element, such as a + class, method, or statement.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/Association.html b/docs/org/variantsync/boosting/datastructure/Association.html new file mode 100644 index 0000000..4dbc011 --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/Association.html @@ -0,0 +1,526 @@ + + + + +Association (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Association

+
+
java.lang.Object +
org.variantsync.boosting.datastructure.Association
+
+
+
+
+
public class Association +extends Object
+
Represents an association between modules and AST nodes. + An association consists of the following components: + - A set of AST nodes (astNodes) representing the code elements involved in + the association + - Three sets of modules (min, all, max) representing the minimum, all, and + maximum products in which the association appears + - A set of modules (not) representing the products in which the association + does not appear + - A boolean flag (isBasic) indicating whether the association appears in all + products + - A formula (mapping) representing the mapping between the modules and AST + nodes + + This class provides methods for accessing and modifying the components of the + association, such as: + - Getting and setting the AST nodes, modules, and mapping + - Removing specific AST nodes from the association + - Getting the smallest modules in the association based on their size + - Checking if the association is basic + + The equals and hashCode methods are overridden to ensure proper comparison of + association objects based on their components.
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/EccoSet.html b/docs/org/variantsync/boosting/datastructure/EccoSet.html new file mode 100644 index 0000000..a3dc6e1 --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/EccoSet.html @@ -0,0 +1,405 @@ + + + + +EccoSet (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class EccoSet<E>

+
+
java.lang.Object +
java.util.AbstractCollection<E> +
java.util.AbstractSet<E> +
java.util.HashSet<E> +
org.variantsync.boosting.datastructure.EccoSet<E>
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Cloneable, Iterable<E>, Collection<E>, Set<E>
+
+
+
public class EccoSet<E> +extends HashSet<E>
+
A custom set implementation to handle sets similar to how they are defined by + ECCO.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/Feature.html b/docs/org/variantsync/boosting/datastructure/Feature.html new file mode 100644 index 0000000..c03db5e --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/Feature.html @@ -0,0 +1,275 @@ + + + + +Feature (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Feature

+
+
java.lang.Object +
org.variantsync.boosting.datastructure.Feature
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<Feature>
+
+
+
public class Feature +extends Object +implements Comparable<Feature>, Serializable
+
Represents a feature with a name. + + This class implements the Comparable interface to allow for comparison of + Feature objects based on their names.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/MainTree.html b/docs/org/variantsync/boosting/datastructure/MainTree.html new file mode 100644 index 0000000..d16b555 --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/MainTree.html @@ -0,0 +1,275 @@ + + + + +MainTree (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MainTree

+
+
java.lang.Object +
org.variantsync.boosting.datastructure.MainTree
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class MainTree +extends Object +implements Serializable
+
The MainTree represents the AST resulting from merging several product ASTs.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/Module.html b/docs/org/variantsync/boosting/datastructure/Module.html new file mode 100644 index 0000000..058b25f --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/Module.html @@ -0,0 +1,257 @@ + + + + +Module (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Module

+
+
java.lang.Object +
org.variantsync.boosting.datastructure.Module
+
+
+
+
+
public class Module +extends Object
+
A class representing a module in ECCO. + + This class encapsulates a set of literals and provides methods for comparing + modules and retrieving information about the literals it contains.
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/class-use/ASTNode.NODE_TYPE.html b/docs/org/variantsync/boosting/datastructure/class-use/ASTNode.NODE_TYPE.html new file mode 100644 index 0000000..2e7b425 --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/class-use/ASTNode.NODE_TYPE.html @@ -0,0 +1,111 @@ + + + + +Uses of Enum Class org.variantsync.boosting.datastructure.ASTNode.NODE_TYPE (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
org.variantsync.boosting.datastructure.ASTNode.NODE_TYPE

+
+
Packages that use ASTNode.NODE_TYPE
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/class-use/ASTNode.html b/docs/org/variantsync/boosting/datastructure/class-use/ASTNode.html new file mode 100644 index 0000000..8dc3f95 --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/class-use/ASTNode.html @@ -0,0 +1,429 @@ + + + + +Uses of Class org.variantsync.boosting.datastructure.ASTNode (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.datastructure.ASTNode

+
+
Packages that use ASTNode
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/class-use/Association.html b/docs/org/variantsync/boosting/datastructure/class-use/Association.html new file mode 100644 index 0000000..dd1bcae --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/class-use/Association.html @@ -0,0 +1,87 @@ + + + + +Uses of Class org.variantsync.boosting.datastructure.Association (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.datastructure.Association

+
+
Packages that use Association
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/class-use/EccoSet.html b/docs/org/variantsync/boosting/datastructure/class-use/EccoSet.html new file mode 100644 index 0000000..b624f69 --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/class-use/EccoSet.html @@ -0,0 +1,400 @@ + + + + +Uses of Class org.variantsync.boosting.datastructure.EccoSet (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.datastructure.EccoSet

+
+
Packages that use EccoSet
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/class-use/Feature.html b/docs/org/variantsync/boosting/datastructure/class-use/Feature.html new file mode 100644 index 0000000..ba00a5c --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/class-use/Feature.html @@ -0,0 +1,144 @@ + + + + +Uses of Class org.variantsync.boosting.datastructure.Feature (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.datastructure.Feature

+
+
Packages that use Feature
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/class-use/MainTree.html b/docs/org/variantsync/boosting/datastructure/class-use/MainTree.html new file mode 100644 index 0000000..1ad26ce --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/class-use/MainTree.html @@ -0,0 +1,110 @@ + + + + +Uses of Class org.variantsync.boosting.datastructure.MainTree (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.datastructure.MainTree

+
+
Packages that use MainTree
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/class-use/Module.html b/docs/org/variantsync/boosting/datastructure/class-use/Module.html new file mode 100644 index 0000000..7f564f9 --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/class-use/Module.html @@ -0,0 +1,152 @@ + + + + +Uses of Class org.variantsync.boosting.datastructure.Module (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.datastructure.Module

+
+
Packages that use Module
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/package-summary.html b/docs/org/variantsync/boosting/datastructure/package-summary.html new file mode 100644 index 0000000..9fe796d --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/package-summary.html @@ -0,0 +1,138 @@ + + + + +org.variantsync.boosting.datastructure (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.variantsync.boosting.datastructure

+
+
+
+
package org.variantsync.boosting.datastructure
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/package-tree.html b/docs/org/variantsync/boosting/datastructure/package-tree.html new file mode 100644 index 0000000..10b6cef --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/package-tree.html @@ -0,0 +1,103 @@ + + + + +org.variantsync.boosting.datastructure Class Hierarchy (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.variantsync.boosting.datastructure

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/datastructure/package-use.html b/docs/org/variantsync/boosting/datastructure/package-use.html new file mode 100644 index 0000000..b4178b9 --- /dev/null +++ b/docs/org/variantsync/boosting/datastructure/package-use.html @@ -0,0 +1,169 @@ + + + + +Uses of Package org.variantsync.boosting.datastructure (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.variantsync.boosting.datastructure

+
+
Packages that use org.variantsync.boosting.datastructure
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/package-summary.html b/docs/org/variantsync/boosting/package-summary.html new file mode 100644 index 0000000..76697bb --- /dev/null +++ b/docs/org/variantsync/boosting/package-summary.html @@ -0,0 +1,114 @@ + + + + +org.variantsync.boosting (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.variantsync.boosting

+
+
+
+
package org.variantsync.boosting
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/package-tree.html b/docs/org/variantsync/boosting/package-tree.html new file mode 100644 index 0000000..d3cac75 --- /dev/null +++ b/docs/org/variantsync/boosting/package-tree.html @@ -0,0 +1,72 @@ + + + + +org.variantsync.boosting Class Hierarchy (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.variantsync.boosting

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/package-use.html b/docs/org/variantsync/boosting/package-use.html new file mode 100644 index 0000000..b4ee344 --- /dev/null +++ b/docs/org/variantsync/boosting/package-use.html @@ -0,0 +1,58 @@ + + + + +Uses of Package org.variantsync.boosting (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.variantsync.boosting

+
+No usage of org.variantsync.boosting
+ + + diff --git a/docs/org/variantsync/boosting/parsing/AbstractAST.html b/docs/org/variantsync/boosting/parsing/AbstractAST.html new file mode 100644 index 0000000..1181059 --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/AbstractAST.html @@ -0,0 +1,378 @@ + + + + +AbstractAST (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AbstractAST

+
+
java.lang.Object +
org.variantsync.boosting.parsing.AbstractAST
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
Direct Known Subclasses:
+
JavaAST, LineAST
+
+
+
public abstract class AbstractAST +extends Object +implements Serializable
+
AbstractAST is an abstract class representing an Abstract Syntax Tree (AST) + with a root node and a set of AST nodes. + This class provides constructors to create an AST with optional filtering + based on file types.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/parsing/CAST.html b/docs/org/variantsync/boosting/parsing/CAST.html new file mode 100644 index 0000000..468622b --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/CAST.html @@ -0,0 +1,231 @@ + + + + +CAST (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class CAST

+
+
java.lang.Object + +
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class CAST +extends LineAST
+
Represents a Syntax Tree (CAST) for C source code files. + + This class extends LineAST and provides functionality specific to C source + code files. + + The supported file types for this CAST are ".c" and ".h".
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/parsing/ESupportedLanguages.html b/docs/org/variantsync/boosting/parsing/ESupportedLanguages.html new file mode 100644 index 0000000..8c6f67e --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/ESupportedLanguages.html @@ -0,0 +1,257 @@ + + + + +ESupportedLanguages (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class ESupportedLanguages

+
+
java.lang.Object +
java.lang.Enum<ESupportedLanguages> +
org.variantsync.boosting.parsing.ESupportedLanguages
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<ESupportedLanguages>, Constable
+
+
+
public enum ESupportedLanguages +extends Enum<ESupportedLanguages>
+
Enum representing supported programming languages. + + This enum defines the supported programming languages for a specific + application. + The supported languages are C, Java, and Lines.
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/parsing/JavaAST.html b/docs/org/variantsync/boosting/parsing/JavaAST.html new file mode 100644 index 0000000..9d046ef --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/JavaAST.html @@ -0,0 +1,246 @@ + + + + +JavaAST (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class JavaAST

+
+
java.lang.Object +
org.variantsync.boosting.parsing.AbstractAST +
org.variantsync.boosting.parsing.JavaAST
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class JavaAST +extends AbstractAST
+
Represents an Abstract Syntax Tree (AST) for Java files. + This class extends the AbstractAST class and provides specific functionality + for Java files.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/parsing/JavaVisitor.html b/docs/org/variantsync/boosting/parsing/JavaVisitor.html new file mode 100644 index 0000000..932393a --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/JavaVisitor.html @@ -0,0 +1,510 @@ + + + + +JavaVisitor (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class JavaVisitor

+
+
java.lang.Object +
com.github.javaparser.ast.visitor.VoidVisitorWithDefaults<ASTNode> +
org.variantsync.boosting.parsing.JavaVisitor
+
+
+
+
+
+
All Implemented Interfaces:
+
com.github.javaparser.ast.visitor.VoidVisitor<ASTNode>
+
+
+
public class JavaVisitor +extends com.github.javaparser.ast.visitor.VoidVisitorWithDefaults<ASTNode>
+
This class represents a Java visitor that is used to visit ASTNodes in a Java + file.
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/parsing/LineAST.html b/docs/org/variantsync/boosting/parsing/LineAST.html new file mode 100644 index 0000000..4da7630 --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/LineAST.html @@ -0,0 +1,282 @@ + + + + +LineAST (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class LineAST

+
+
java.lang.Object +
org.variantsync.boosting.parsing.AbstractAST +
org.variantsync.boosting.parsing.LineAST
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
Direct Known Subclasses:
+
CAST
+
+
+
public class LineAST +extends AbstractAST
+
Represents a node in the Abstract Syntax Tree (AST) that represents a line of + code in a file. + This class extends AbstractAST and provides functionality to visit the + content of a file and create + AST nodes for each line in the file.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/parsing/class-use/AbstractAST.html b/docs/org/variantsync/boosting/parsing/class-use/AbstractAST.html new file mode 100644 index 0000000..39a30ef --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/class-use/AbstractAST.html @@ -0,0 +1,157 @@ + + + + +Uses of Class org.variantsync.boosting.parsing.AbstractAST (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.parsing.AbstractAST

+
+
Packages that use AbstractAST
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/parsing/class-use/CAST.html b/docs/org/variantsync/boosting/parsing/class-use/CAST.html new file mode 100644 index 0000000..b828f27 --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/class-use/CAST.html @@ -0,0 +1,58 @@ + + + + +Uses of Class org.variantsync.boosting.parsing.CAST (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.parsing.CAST

+
+No usage of org.variantsync.boosting.parsing.CAST
+ + + diff --git a/docs/org/variantsync/boosting/parsing/class-use/ESupportedLanguages.html b/docs/org/variantsync/boosting/parsing/class-use/ESupportedLanguages.html new file mode 100644 index 0000000..eb04a30 --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/class-use/ESupportedLanguages.html @@ -0,0 +1,130 @@ + + + + +Uses of Enum Class org.variantsync.boosting.parsing.ESupportedLanguages (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
org.variantsync.boosting.parsing.ESupportedLanguages

+
+
Packages that use ESupportedLanguages
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/parsing/class-use/JavaAST.html b/docs/org/variantsync/boosting/parsing/class-use/JavaAST.html new file mode 100644 index 0000000..494fc0a --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/class-use/JavaAST.html @@ -0,0 +1,58 @@ + + + + +Uses of Class org.variantsync.boosting.parsing.JavaAST (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.parsing.JavaAST

+
+No usage of org.variantsync.boosting.parsing.JavaAST
+ + + diff --git a/docs/org/variantsync/boosting/parsing/class-use/JavaVisitor.html b/docs/org/variantsync/boosting/parsing/class-use/JavaVisitor.html new file mode 100644 index 0000000..4b45b82 --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/class-use/JavaVisitor.html @@ -0,0 +1,58 @@ + + + + +Uses of Class org.variantsync.boosting.parsing.JavaVisitor (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.parsing.JavaVisitor

+
+No usage of org.variantsync.boosting.parsing.JavaVisitor
+ + + diff --git a/docs/org/variantsync/boosting/parsing/class-use/LineAST.html b/docs/org/variantsync/boosting/parsing/class-use/LineAST.html new file mode 100644 index 0000000..c5830e5 --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/class-use/LineAST.html @@ -0,0 +1,85 @@ + + + + +Uses of Class org.variantsync.boosting.parsing.LineAST (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.parsing.LineAST

+
+
Packages that use LineAST
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/parsing/package-summary.html b/docs/org/variantsync/boosting/parsing/package-summary.html new file mode 100644 index 0000000..05aaab7 --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/package-summary.html @@ -0,0 +1,138 @@ + + + + +org.variantsync.boosting.parsing (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.variantsync.boosting.parsing

+
+
+
+
package org.variantsync.boosting.parsing
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/parsing/package-tree.html b/docs/org/variantsync/boosting/parsing/package-tree.html new file mode 100644 index 0000000..78520d0 --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/package-tree.html @@ -0,0 +1,100 @@ + + + + +org.variantsync.boosting.parsing Class Hierarchy (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.variantsync.boosting.parsing

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/parsing/package-use.html b/docs/org/variantsync/boosting/parsing/package-use.html new file mode 100644 index 0000000..d052d5d --- /dev/null +++ b/docs/org/variantsync/boosting/parsing/package-use.html @@ -0,0 +1,143 @@ + + + + +Uses of Package org.variantsync.boosting.parsing (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.variantsync.boosting.parsing

+
+
Packages that use org.variantsync.boosting.parsing
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/position/FilePosition.html b/docs/org/variantsync/boosting/position/FilePosition.html new file mode 100644 index 0000000..22a92a6 --- /dev/null +++ b/docs/org/variantsync/boosting/position/FilePosition.html @@ -0,0 +1,315 @@ + + + + +FilePosition (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class FilePosition

+
+
java.lang.Object +
org.variantsync.boosting.position.Position +
org.variantsync.boosting.position.FilePosition
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class FilePosition +extends Position
+
Represents the location of a file.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/position/LinePosition.html b/docs/org/variantsync/boosting/position/LinePosition.html new file mode 100644 index 0000000..59aea4d --- /dev/null +++ b/docs/org/variantsync/boosting/position/LinePosition.html @@ -0,0 +1,323 @@ + + + + +LinePosition (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class LinePosition

+
+
java.lang.Object +
org.variantsync.boosting.position.Position +
org.variantsync.boosting.position.LinePosition
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class LinePosition +extends Position
+
Represents a position in a file with line and column numbers.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/position/Position.html b/docs/org/variantsync/boosting/position/Position.html new file mode 100644 index 0000000..40afe69 --- /dev/null +++ b/docs/org/variantsync/boosting/position/Position.html @@ -0,0 +1,331 @@ + + + + +Position (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Position

+
+
java.lang.Object +
org.variantsync.boosting.position.Position
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
Direct Known Subclasses:
+
FilePosition, LinePosition, RootPosition, UnspecifiedPosition
+
+
+
public abstract class Position +extends Object +implements Serializable
+
Represents a position in a file, line, or root. + This abstract class provides methods for creating a Position object from a + serialized string, + as well as methods for getting the hash code, checking equality, serializing + the position, + getting the file path, line number, and column number.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/position/ProductPosition.html b/docs/org/variantsync/boosting/position/ProductPosition.html new file mode 100644 index 0000000..40e1e1c --- /dev/null +++ b/docs/org/variantsync/boosting/position/ProductPosition.html @@ -0,0 +1,334 @@ + + + + +ProductPosition (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ProductPosition

+
+
java.lang.Object +
org.variantsync.boosting.position.ProductPosition
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class ProductPosition +extends Object +implements Serializable
+
Represents a mapping between a Product and a Position.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/position/RootPosition.html b/docs/org/variantsync/boosting/position/RootPosition.html new file mode 100644 index 0000000..7ba0246 --- /dev/null +++ b/docs/org/variantsync/boosting/position/RootPosition.html @@ -0,0 +1,311 @@ + + + + +RootPosition (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class RootPosition

+
+
java.lang.Object +
org.variantsync.boosting.position.Position +
org.variantsync.boosting.position.RootPosition
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class RootPosition +extends Position
+
Represents the root position in a tree.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/position/UnspecifiedPosition.html b/docs/org/variantsync/boosting/position/UnspecifiedPosition.html new file mode 100644 index 0000000..4fbe826 --- /dev/null +++ b/docs/org/variantsync/boosting/position/UnspecifiedPosition.html @@ -0,0 +1,310 @@ + + + + +UnspecifiedPosition (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class UnspecifiedPosition

+
+
java.lang.Object +
org.variantsync.boosting.position.Position +
org.variantsync.boosting.position.UnspecifiedPosition
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class UnspecifiedPosition +extends Position
+
Represents an unspecified position.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/position/class-use/FilePosition.html b/docs/org/variantsync/boosting/position/class-use/FilePosition.html new file mode 100644 index 0000000..b51eab5 --- /dev/null +++ b/docs/org/variantsync/boosting/position/class-use/FilePosition.html @@ -0,0 +1,58 @@ + + + + +Uses of Class org.variantsync.boosting.position.FilePosition (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.position.FilePosition

+
+No usage of org.variantsync.boosting.position.FilePosition
+ + + diff --git a/docs/org/variantsync/boosting/position/class-use/LinePosition.html b/docs/org/variantsync/boosting/position/class-use/LinePosition.html new file mode 100644 index 0000000..38e7680 --- /dev/null +++ b/docs/org/variantsync/boosting/position/class-use/LinePosition.html @@ -0,0 +1,58 @@ + + + + +Uses of Class org.variantsync.boosting.position.LinePosition (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.position.LinePosition

+
+No usage of org.variantsync.boosting.position.LinePosition
+ + + diff --git a/docs/org/variantsync/boosting/position/class-use/Position.html b/docs/org/variantsync/boosting/position/class-use/Position.html new file mode 100644 index 0000000..3f1c9da --- /dev/null +++ b/docs/org/variantsync/boosting/position/class-use/Position.html @@ -0,0 +1,212 @@ + + + + +Uses of Class org.variantsync.boosting.position.Position (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.position.Position

+
+
Packages that use Position
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/position/class-use/ProductPosition.html b/docs/org/variantsync/boosting/position/class-use/ProductPosition.html new file mode 100644 index 0000000..f174ada --- /dev/null +++ b/docs/org/variantsync/boosting/position/class-use/ProductPosition.html @@ -0,0 +1,96 @@ + + + + +Uses of Class org.variantsync.boosting.position.ProductPosition (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.position.ProductPosition

+
+
Packages that use ProductPosition
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/position/class-use/RootPosition.html b/docs/org/variantsync/boosting/position/class-use/RootPosition.html new file mode 100644 index 0000000..4cdd6e5 --- /dev/null +++ b/docs/org/variantsync/boosting/position/class-use/RootPosition.html @@ -0,0 +1,83 @@ + + + + +Uses of Class org.variantsync.boosting.position.RootPosition (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.position.RootPosition

+
+
Packages that use RootPosition
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/position/class-use/UnspecifiedPosition.html b/docs/org/variantsync/boosting/position/class-use/UnspecifiedPosition.html new file mode 100644 index 0000000..2de52f4 --- /dev/null +++ b/docs/org/variantsync/boosting/position/class-use/UnspecifiedPosition.html @@ -0,0 +1,83 @@ + + + + +Uses of Class org.variantsync.boosting.position.UnspecifiedPosition (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.position.UnspecifiedPosition

+
+
Packages that use UnspecifiedPosition
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/position/package-summary.html b/docs/org/variantsync/boosting/position/package-summary.html new file mode 100644 index 0000000..aa3700b --- /dev/null +++ b/docs/org/variantsync/boosting/position/package-summary.html @@ -0,0 +1,133 @@ + + + + +org.variantsync.boosting.position (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.variantsync.boosting.position

+
+
+
+
package org.variantsync.boosting.position
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/position/package-tree.html b/docs/org/variantsync/boosting/position/package-tree.html new file mode 100644 index 0000000..ff95c47 --- /dev/null +++ b/docs/org/variantsync/boosting/position/package-tree.html @@ -0,0 +1,80 @@ + + + + +org.variantsync.boosting.position Class Hierarchy (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.variantsync.boosting.position

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/position/package-use.html b/docs/org/variantsync/boosting/position/package-use.html new file mode 100644 index 0000000..6be1c34 --- /dev/null +++ b/docs/org/variantsync/boosting/position/package-use.html @@ -0,0 +1,139 @@ + + + + +Uses of Package org.variantsync.boosting.position (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.variantsync.boosting.position

+
+
Packages that use org.variantsync.boosting.position
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/product/Product.html b/docs/org/variantsync/boosting/product/Product.html new file mode 100644 index 0000000..d37cdad --- /dev/null +++ b/docs/org/variantsync/boosting/product/Product.html @@ -0,0 +1,411 @@ + + + + +Product (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Product

+
+
java.lang.Object +
org.variantsync.boosting.product.Product
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class Product +extends Object +implements Serializable
+
The Product class represents a product with features and an abstract syntax tree (AST). + + This class defines a product with a set of features and a product + AST. + It also stores the AST nodes of the main tree that correspond to the AST + nodes of the product AST.
+
+
See Also:
+
+ +
+
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/product/ProductInitializationTask.InitResult.html b/docs/org/variantsync/boosting/product/ProductInitializationTask.InitResult.html new file mode 100644 index 0000000..136c9a6 --- /dev/null +++ b/docs/org/variantsync/boosting/product/ProductInitializationTask.InitResult.html @@ -0,0 +1,234 @@ + + + + +ProductInitializationTask.InitResult (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ProductInitializationTask.InitResult

+
+
java.lang.Object +
org.variantsync.boosting.product.ProductInitializationTask.InitResult
+
+
+
+
+
Enclosing class:
+
ProductInitializationTask
+
+
+
public static class ProductInitializationTask.InitResult +extends Object
+
Represents the result of initializing a product. + Contains the ID of the initialization, a set of all features, and the product + associated with the initialization.
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/product/ProductInitializationTask.html b/docs/org/variantsync/boosting/product/ProductInitializationTask.html new file mode 100644 index 0000000..d0ed3d1 --- /dev/null +++ b/docs/org/variantsync/boosting/product/ProductInitializationTask.html @@ -0,0 +1,236 @@ + + + + +ProductInitializationTask (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ProductInitializationTask

+
+
java.lang.Object +
org.variantsync.boosting.product.ProductInitializationTask
+
+
+
+
+
All Implemented Interfaces:
+
Callable<ProductInitializationTask.InitResult>
+
+
+
public class ProductInitializationTask +extends Object +implements Callable<ProductInitializationTask.InitResult>
+
A Callable task for initializing a product with the given parameters.
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/product/ProductLoadTask.LoadResult.html b/docs/org/variantsync/boosting/product/ProductLoadTask.LoadResult.html new file mode 100644 index 0000000..42cd873 --- /dev/null +++ b/docs/org/variantsync/boosting/product/ProductLoadTask.LoadResult.html @@ -0,0 +1,200 @@ + + + + +ProductLoadTask.LoadResult (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ProductLoadTask.LoadResult

+
+
java.lang.Object +
org.variantsync.boosting.product.ProductLoadTask.LoadResult
+
+
+
+
+
Enclosing class:
+
ProductLoadTask
+
+
+
public static class ProductLoadTask.LoadResult +extends Object
+
Represents the result of loading a product, containing the product ID and + product object.
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/product/ProductLoadTask.html b/docs/org/variantsync/boosting/product/ProductLoadTask.html new file mode 100644 index 0000000..bc7389d --- /dev/null +++ b/docs/org/variantsync/boosting/product/ProductLoadTask.html @@ -0,0 +1,242 @@ + + + + +ProductLoadTask (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ProductLoadTask

+
+
java.lang.Object +
org.variantsync.boosting.product.ProductLoadTask
+
+
+
+
+
All Implemented Interfaces:
+
Callable<ProductLoadTask.LoadResult>
+
+
+
public class ProductLoadTask +extends Object +implements Callable<ProductLoadTask.LoadResult>
+
A Callable task that loads a product from a given file path. + The task reads the product object from the file using ObjectInputStream and + returns a LoadResult object.
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/product/ProductLoader.html b/docs/org/variantsync/boosting/product/ProductLoader.html new file mode 100644 index 0000000..e0f8b66 --- /dev/null +++ b/docs/org/variantsync/boosting/product/ProductLoader.html @@ -0,0 +1,238 @@ + + + + +ProductLoader (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ProductLoader

+
+
java.lang.Object +
org.variantsync.boosting.product.ProductLoader
+
+
+
+
+
All Implemented Interfaces:
+
Iterator<Product>
+
+
+
public class ProductLoader +extends Object +implements Iterator<Product>
+
A class that implements an Iterator for loading products using multiple + threads. + + This class takes a list of ProductLoadTask objects and a number of threads to + use for loading the products. + It then creates a thread pool with the specified number of threads and + submits tasks to load products.
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/product/ProductPassport.html b/docs/org/variantsync/boosting/product/ProductPassport.html new file mode 100644 index 0000000..b2ed4a8 --- /dev/null +++ b/docs/org/variantsync/boosting/product/ProductPassport.html @@ -0,0 +1,239 @@ + + + + +ProductPassport (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ProductPassport

+
+
java.lang.Object +
org.variantsync.boosting.product.ProductPassport
+
+
+
+
+
public class ProductPassport +extends Object
+
The ProductPassport collects the information about the product name, + sources root, and configuration path.
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/product/ProductSaveTask.html b/docs/org/variantsync/boosting/product/ProductSaveTask.html new file mode 100644 index 0000000..d9cddd0 --- /dev/null +++ b/docs/org/variantsync/boosting/product/ProductSaveTask.html @@ -0,0 +1,222 @@ + + + + +ProductSaveTask (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ProductSaveTask

+
+
java.lang.Object +
org.variantsync.boosting.product.ProductSaveTask
+
+
+
+
+
All Implemented Interfaces:
+
Runnable
+
+
+
public class ProductSaveTask +extends Object +implements Runnable
+
A class representing a task to save a product to a file. + This class implements the Runnable interface to be executed as a thread.
+
+
+
+ +
+
+ +
+ +
+ + + diff --git a/docs/org/variantsync/boosting/product/class-use/Product.html b/docs/org/variantsync/boosting/product/class-use/Product.html new file mode 100644 index 0000000..d63c7d8 --- /dev/null +++ b/docs/org/variantsync/boosting/product/class-use/Product.html @@ -0,0 +1,216 @@ + + + + +Uses of Class org.variantsync.boosting.product.Product (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.product.Product

+
+
Packages that use Product
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/product/class-use/ProductInitializationTask.InitResult.html b/docs/org/variantsync/boosting/product/class-use/ProductInitializationTask.InitResult.html new file mode 100644 index 0000000..f16ce9a --- /dev/null +++ b/docs/org/variantsync/boosting/product/class-use/ProductInitializationTask.InitResult.html @@ -0,0 +1,85 @@ + + + + +Uses of Class org.variantsync.boosting.product.ProductInitializationTask.InitResult (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.product.ProductInitializationTask.InitResult

+
+
Packages that use ProductInitializationTask.InitResult
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/product/class-use/ProductInitializationTask.html b/docs/org/variantsync/boosting/product/class-use/ProductInitializationTask.html new file mode 100644 index 0000000..847a5c1 --- /dev/null +++ b/docs/org/variantsync/boosting/product/class-use/ProductInitializationTask.html @@ -0,0 +1,86 @@ + + + + +Uses of Class org.variantsync.boosting.product.ProductInitializationTask (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.product.ProductInitializationTask

+
+
Packages that use ProductInitializationTask
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/product/class-use/ProductLoadTask.LoadResult.html b/docs/org/variantsync/boosting/product/class-use/ProductLoadTask.LoadResult.html new file mode 100644 index 0000000..46956d7 --- /dev/null +++ b/docs/org/variantsync/boosting/product/class-use/ProductLoadTask.LoadResult.html @@ -0,0 +1,85 @@ + + + + +Uses of Class org.variantsync.boosting.product.ProductLoadTask.LoadResult (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.product.ProductLoadTask.LoadResult

+
+
Packages that use ProductLoadTask.LoadResult
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/product/class-use/ProductLoadTask.html b/docs/org/variantsync/boosting/product/class-use/ProductLoadTask.html new file mode 100644 index 0000000..082cdb4 --- /dev/null +++ b/docs/org/variantsync/boosting/product/class-use/ProductLoadTask.html @@ -0,0 +1,87 @@ + + + + +Uses of Class org.variantsync.boosting.product.ProductLoadTask (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.product.ProductLoadTask

+
+
Packages that use ProductLoadTask
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/product/class-use/ProductLoader.html b/docs/org/variantsync/boosting/product/class-use/ProductLoader.html new file mode 100644 index 0000000..6df9a3d --- /dev/null +++ b/docs/org/variantsync/boosting/product/class-use/ProductLoader.html @@ -0,0 +1,83 @@ + + + + +Uses of Class org.variantsync.boosting.product.ProductLoader (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.product.ProductLoader

+
+
Packages that use ProductLoader
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/product/class-use/ProductPassport.html b/docs/org/variantsync/boosting/product/class-use/ProductPassport.html new file mode 100644 index 0000000..0801c4d --- /dev/null +++ b/docs/org/variantsync/boosting/product/class-use/ProductPassport.html @@ -0,0 +1,106 @@ + + + + +Uses of Class org.variantsync.boosting.product.ProductPassport (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.product.ProductPassport

+
+
Packages that use ProductPassport
+
+
Package
+
Description
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/product/class-use/ProductSaveTask.html b/docs/org/variantsync/boosting/product/class-use/ProductSaveTask.html new file mode 100644 index 0000000..a7644d7 --- /dev/null +++ b/docs/org/variantsync/boosting/product/class-use/ProductSaveTask.html @@ -0,0 +1,58 @@ + + + + +Uses of Class org.variantsync.boosting.product.ProductSaveTask (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.variantsync.boosting.product.ProductSaveTask

+
+No usage of org.variantsync.boosting.product.ProductSaveTask
+ + + diff --git a/docs/org/variantsync/boosting/product/package-summary.html b/docs/org/variantsync/boosting/product/package-summary.html new file mode 100644 index 0000000..0575410 --- /dev/null +++ b/docs/org/variantsync/boosting/product/package-summary.html @@ -0,0 +1,144 @@ + + + + +org.variantsync.boosting.product (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.variantsync.boosting.product

+
+
+
+
package org.variantsync.boosting.product
+
+
+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/product/package-tree.html b/docs/org/variantsync/boosting/product/package-tree.html new file mode 100644 index 0000000..1516e5a --- /dev/null +++ b/docs/org/variantsync/boosting/product/package-tree.html @@ -0,0 +1,79 @@ + + + + +org.variantsync.boosting.product Class Hierarchy (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.variantsync.boosting.product

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+ + + diff --git a/docs/org/variantsync/boosting/product/package-use.html b/docs/org/variantsync/boosting/product/package-use.html new file mode 100644 index 0000000..7409d54 --- /dev/null +++ b/docs/org/variantsync/boosting/product/package-use.html @@ -0,0 +1,159 @@ + + + + +Uses of Package org.variantsync.boosting.product (trace-boosting 1.0.0 API) + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.variantsync.boosting.product

+
+
Packages that use org.variantsync.boosting.product
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+
+
+ +
+
+ + + diff --git a/docs/overview-summary.html b/docs/overview-summary.html index cc0cc0c..771a3d3 100644 --- a/docs/overview-summary.html +++ b/docs/overview-summary.html @@ -1,7 +1,7 @@ - + trace-boosting 1.0.0 API @@ -9,7 +9,7 @@ - +