Skip to content

Commit

Permalink
Renamed commands from Java* to JavaNew*
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Sep 4, 2015
1 parent 47e3ace commit 61d1f23
Show file tree
Hide file tree
Showing 16 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
/**
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
public interface JavaInterfaceCommand extends UICommand
public interface JavaNewAnnotationCommand extends UICommand
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
/**
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
public interface JavaClassCommand extends UICommand
public interface JavaNewClassCommand extends UICommand
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
*
* @author <a href="ggastald@redhat.com">George Gastaldi</a>
*/
public interface JavaEnumCommand extends UICommand
public interface JavaNewEnumCommand extends UICommand
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
*
* @author <a href="ggastald@redhat.com">George Gastaldi</a>
*/
public interface JavaEnumConstantCommand extends UICommand
public interface JavaNewEnumConstantCommand extends UICommand
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
/**
* @author <a href="mailto:antonio.goncalves@gmail.com">Antonio Goncalves</a>
*/
public interface JavaExceptionCommand extends UICommand
public interface JavaNewExceptionCommand extends UICommand
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
/**
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
public interface JavaFieldCommand extends UICommand
public interface JavaNewFieldCommand extends UICommand
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
/**
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
public interface JavaAnnotationCommand extends UICommand
public interface JavaNewInterfaceCommand extends UICommand
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
/**
* @author <a href="mailto:ggastald@redhat.com">George Gastaldi</a>
*/
public interface JavaPackageCommand extends UICommand
public interface JavaNewPackageCommand extends UICommand
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
/**
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
public class JavaAnnotationCommandImpl extends AbstractJavaSourceCommand<JavaAnnotationSource>
implements JavaAnnotationCommand
public class JavaNewAnnotationCommandImpl extends AbstractJavaSourceCommand<JavaAnnotationSource>
implements JavaNewAnnotationCommand
{
@Inject
private ProjectFactory projectFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
public class JavaClassCommandImpl extends AbstractJavaSourceCommand<JavaClassSource>implements JavaClassCommand
public class JavaNewClassCommandImpl extends AbstractJavaSourceCommand<JavaClassSource>implements JavaNewClassCommand
{
@Inject
private ProjectFactory projectFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @author <a href="ggastald@redhat.com">George Gastaldi</a>
*/
public class JavaEnumCommandImpl extends AbstractJavaSourceCommand<JavaEnumSource>implements JavaEnumCommand
public class JavaNewEnumCommandImpl extends AbstractJavaSourceCommand<JavaEnumSource>implements JavaNewEnumCommand
{
@Inject
private ProjectFactory projectFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*
* @author <a href="ggastald@redhat.com">George Gastaldi</a>
*/
public class JavaEnumConstantCommandImpl extends AbstractProjectCommand implements JavaEnumConstantCommand
public class JavaNewEnumConstantCommandImpl extends AbstractProjectCommand implements JavaNewEnumConstantCommand
{
@Inject
private ProjectFactory projectFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
/**
* @author <a href="mailto:antonio.goncalves@gmail.com">Antonio Goncalves</a>
*/
public class JavaExceptionCommandImpl extends AbstractJavaSourceCommand<JavaClassSource>implements
JavaExceptionCommand
public class JavaNewExceptionCommandImpl extends AbstractJavaSourceCommand<JavaClassSource>implements
JavaNewExceptionCommand
{
@Inject
private ProjectFactory projectFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import org.jboss.forge.roaster.model.source.FieldSource;
import org.jboss.forge.roaster.model.source.JavaClassSource;

public class JavaFieldCommandImpl extends AbstractProjectCommand implements JavaFieldCommand
public class JavaNewFieldCommandImpl extends AbstractProjectCommand implements JavaNewFieldCommand
{

@Inject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
/**
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
public class JavaInterfaceCommandImpl extends AbstractJavaSourceCommand<JavaInterfaceSource>implements
JavaInterfaceCommand
public class JavaNewInterfaceCommandImpl extends AbstractJavaSourceCommand<JavaInterfaceSource>implements
JavaNewInterfaceCommand
{
@Inject
private ProjectFactory projectFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @author <a href="mailto:ggastald@redhat.com">George Gastaldi</a>
*/
@FacetConstraint(JavaSourceFacet.class)
public class JavaPackageCommandImpl extends AbstractProjectCommand implements JavaPackageCommand
public class JavaNewPackageCommandImpl extends AbstractProjectCommand implements JavaNewPackageCommand
{
@Inject
@WithAttributes(label = "Package Name", description = "The package name to be created in this project", required = true)
Expand Down

0 comments on commit 61d1f23

Please sign in to comment.