Skip to content

Commit

Permalink
Updated descriptor, regenerated builder.
Browse files Browse the repository at this point in the history
Added the Flapi high level class.
Bugfix for something introduced during the enableCondensed commit (see AbstractGenerator).
  • Loading branch information
UnquietCode committed May 12, 2012
1 parent 4efca88 commit c1a420d
Show file tree
Hide file tree
Showing 146 changed files with 125 additions and 5,369 deletions.
23 changes: 23 additions & 0 deletions src/main/java/unquietcode/tools/flapi/Flapi.java
@@ -0,0 +1,23 @@
package unquietcode.tools.flapi;

import unquietcode.tools.flapi.builder.DescriptorBuilder_enableCondensedClassNames_setDescriptorName_setPackage_setReturnType_setStartingMethodName;
import unquietcode.tools.flapi.builder.DescriptorGenerator;

/**
* @author Ben Fagin
* @version 05-11-2012
*
* From here you can reach the world.
*/
public class Flapi {

/**
* Shortcut to build a new descriptor.
*
* @return a new {@link unquietcode.tools.flapi.builder.DescriptorBuilder}
*/
public static DescriptorBuilder_enableCondensedClassNames_setDescriptorName_setPackage_setReturnType_setStartingMethodName<Descriptor> builder() {
return DescriptorGenerator.create(new DescriptorHelperImpl());

}
}
Expand Up @@ -11,7 +11,7 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface BlockBuilder<_ReturnType >{
Expand Down
Expand Up @@ -11,14 +11,14 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface BlockChainBuilder<_ReturnType >{


_ReturnType addBlockReference(String blockName);

BlockBuilder<_ReturnType> startBlock(String blockName, String methodSignature);
BlockBuilder<_ReturnType> startBlock();

}
Expand Up @@ -11,15 +11,15 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface BlockChainBuilder_addBlockChain<_ReturnType >{


_ReturnType addBlockReference(String blockName);

BlockBuilder<_ReturnType> startBlock(String blockName, String methodSignature);
BlockBuilder<_ReturnType> startBlock();

BlockChainBuilder_addBlockChain<BlockChainBuilder<_ReturnType>> addBlockChain();

Expand Down
Expand Up @@ -12,16 +12,16 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface BlockChainHelper {


void startBlock(ObjectWrapper<BlockHelper> _helper1);

void addBlockReference(String blockName);

void addBlockChain(ObjectWrapper<BlockChainHelper> _helper1);

void startBlock(String blockName, String methodSignature, ObjectWrapper<BlockHelper> _helper1);

}
Expand Up @@ -12,18 +12,18 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface BlockHelper {


void addBlockReference(String blockName, String methodSignature, ObjectWrapper<MethodHelper> _helper1);

void startBlock(String blockName, String methodSignature, ObjectWrapper<MethodHelper> _helper1, ObjectWrapper<BlockHelper> _helper2);

void addMethod(String methodSignature, ObjectWrapper<MethodHelper> _helper1);

void startBlock(String blockName, String methodSignature, ObjectWrapper<MethodHelper> _helper1, ObjectWrapper<BlockHelper> _helper2);

void endBlock();

}
Expand Up @@ -11,7 +11,7 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface DescriptorBuilder<_ReturnType >{
Expand Down
Expand Up @@ -11,7 +11,7 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface DescriptorBuilder_enableCondensedClassNames<_ReturnType >{
Expand Down
Expand Up @@ -11,7 +11,7 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface DescriptorBuilder_enableCondensedClassNames_setDescriptorName<_ReturnType >{
Expand Down
Expand Up @@ -11,7 +11,7 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface DescriptorBuilder_enableCondensedClassNames_setDescriptorName_setPackage<_ReturnType >{
Expand Down
Expand Up @@ -11,7 +11,7 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface DescriptorBuilder_enableCondensedClassNames_setDescriptorName_setPackage_setReturnType<_ReturnType >{
Expand Down
Expand Up @@ -11,7 +11,7 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface DescriptorBuilder_enableCondensedClassNames_setDescriptorName_setPackage_setReturnType_setStartingMethodName<_ReturnType >{
Expand Down

This file was deleted.

This file was deleted.

Expand Up @@ -11,7 +11,7 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface DescriptorBuilder_enableCondensedClassNames_setDescriptorName_setPackage_setStartingMethodName<_ReturnType >{
Expand Down

This file was deleted.

This file was deleted.

Expand Up @@ -11,7 +11,7 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface DescriptorBuilder_enableCondensedClassNames_setDescriptorName_setReturnType<_ReturnType >{
Expand Down
Expand Up @@ -11,7 +11,7 @@
* Visit http://www.unquietcode.com/flapi for more information.
*
*
* Generated on May 09, 2012 23:25:34 CDT using version 0.1
* Generated on May 12, 2012 24:10:05 CDT using version 0.1
*
*/
public interface DescriptorBuilder_enableCondensedClassNames_setDescriptorName_setReturnType_setStartingMethodName<_ReturnType >{
Expand Down

This file was deleted.

0 comments on commit c1a420d

Please sign in to comment.