Skip to content

Commit

Permalink
Refactor next step.
Browse files Browse the repository at this point in the history
  • Loading branch information
minborg committed Aug 31, 2015
1 parent 963e591 commit f1d65af
Show file tree
Hide file tree
Showing 508 changed files with 6,352 additions and 4,926 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@
<configuration> <configuration>
<!-- <verbose>true</verbose>--> <!-- <verbose>true</verbose>-->
<docfilessubdirs>true</docfilessubdirs> <docfilessubdirs>true</docfilessubdirs>
<excludePackageNames>com.speedment.internal.*</excludePackageNames>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
* License for the specific language governing permissions and limitations under * License for the specific language governing permissions and limitations under
* the License. * the License.
*/ */
package com.speedment.api; package com.speedment;


import com.speedment.api.db.MetaResult; import com.speedment.db.MetaResult;
import com.speedment.api.annotation.Api; import com.speedment.annotation.Api;
import com.speedment.api.exception.SpeedmentException; import com.speedment.exception.SpeedmentException;
import com.speedment.core.field.encoder.JsonEncoder; import com.speedment.internal.core.field.encoder.JsonEncoder;
import java.util.function.Consumer; import java.util.function.Consumer;


/** /**
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* License for the specific language governing permissions and limitations under * License for the specific language governing permissions and limitations under
* the License. * the License.
*/ */
package com.speedment.api; package com.speedment;


import com.speedment.api.annotation.Api; import com.speedment.annotation.Api;


/** /**
* *
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
* License for the specific language governing permissions and limitations under * License for the specific language governing permissions and limitations under
* the License. * the License.
*/ */
package com.speedment.api; package com.speedment;


import com.speedment.api.db.MetaResult; import com.speedment.db.MetaResult;
import com.speedment.api.annotation.Api; import com.speedment.annotation.Api;
import com.speedment.api.config.Column; import com.speedment.config.Column;
import com.speedment.api.config.Table; import com.speedment.config.Table;
import com.speedment.api.exception.SpeedmentException; import com.speedment.exception.SpeedmentException;
import com.speedment.core.runtime.Lifecyclable; import com.speedment.internal.core.runtime.Lifecyclable;
import java.util.function.Consumer; import java.util.function.Consumer;
import java.util.stream.Stream; import java.util.stream.Stream;


Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
* License for the specific language governing permissions and limitations under * License for the specific language governing permissions and limitations under
* the License. * the License.
*/ */
package com.speedment.api; package com.speedment;


import com.speedment.core.platform.component.Component; import com.speedment.internal.core.platform.component.Component;
import com.speedment.api.annotation.Api; import com.speedment.annotation.Api;
import com.speedment.api.exception.SpeedmentException; import com.speedment.exception.SpeedmentException;


/** /**
* The {@code Platform} class acts as a generic holder of different system * The {@code Platform} class acts as a generic holder of different system
Expand All @@ -40,14 +40,14 @@ public interface Speedment {
* <p> * <p>
* The supported standard interfaces are: * The supported standard interfaces are:
* <ul> * <ul>
* <li>{@link com.speedment.core.platform.component.EntityManager}</li> * <li>{@link com.speedment.internal.core.platform.component.EntityManager}</li>
* <li>{@link com.speedment.core.platform.component.DbmsHandlerComponent}</li> * <li>{@link com.speedment.internal.core.platform.component.DbmsHandlerComponent}</li>
* <li>{@link com.speedment.core.platform.component.ManagerComponent}</li> * <li>{@link com.speedment.internal.core.platform.component.ManagerComponent}</li>
* <li>{@link com.speedment.core.platform.component.PrimaryKeyFactoryComponent}</li> * <li>{@link com.speedment.internal.core.platform.component.PrimaryKeyFactoryComponent}</li>
* <li>{@link com.speedment.core.platform.component.ProjectComponent}</li> * <li>{@link com.speedment.internal.core.platform.component.ProjectComponent}</li>
* <li>{@link com.speedment.core.platform.component.SqlTypeMapperComponent}</li> * <li>{@link com.speedment.internal.core.platform.component.SqlTypeMapperComponent}</li>
* <li>{@link com.speedment.core.platform.component.LoggerFactoryComponent}</li> * <li>{@link com.speedment.internal.core.platform.component.LoggerFactoryComponent}</li>
* <li>{@link com.speedment.core.platform.component.JavaTypeMapperComponent}</li> * <li>{@link com.speedment.internal.core.platform.component.JavaTypeMapperComponent}</li>
* </ul> * </ul>
* *
* @param <R> The intended return type * @param <R> The intended return type
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/speedment/SpeedmentVersion.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/ */
package com.speedment; package com.speedment;


import static com.speedment.util.Util.instanceNotAllowed; import static com.speedment.internal.util.StaticClassUtil.instanceNotAllowed;


/** /**
* This class holds the parameters normally held in the JAR MANIFEST. By holding * This class holds the parameters normally held in the JAR MANIFEST. By holding
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* License for the specific language governing permissions and limitations under * License for the specific language governing permissions and limitations under
* the License. * the License.
*/ */
package com.speedment.api.annotation; package com.speedment.annotation;


import java.lang.annotation.ElementType; import java.lang.annotation.ElementType;
import java.lang.annotation.Retention; import java.lang.annotation.Retention;
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* License for the specific language governing permissions and limitations under * License for the specific language governing permissions and limitations under
* the License. * the License.
*/ */
package com.speedment.api.annotation; package com.speedment.annotation;


import java.lang.annotation.ElementType; import java.lang.annotation.ElementType;
import java.lang.annotation.Retention; import java.lang.annotation.Retention;
Expand Down
122 changes: 0 additions & 122 deletions src/main/java/com/speedment/codegen/java/JavaTransformFactory.java

This file was deleted.

67 changes: 0 additions & 67 deletions src/main/java/com/speedment/codegen/lang/models/Annotation.java

This file was deleted.

69 changes: 0 additions & 69 deletions src/main/java/com/speedment/codegen/lang/models/Field.java

This file was deleted.

Loading

0 comments on commit f1d65af

Please sign in to comment.