API to Designer functionalities

Posts   
 
    
nw
User
Posts: 42
Joined: 09-Jun-2010
# Posted on: 16-Jul-2010 09:22:15   

Is there an API that I can call externally that performs some of the functionalities of the Designer such as Validation and Code Generation?

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39614
Joined: 17-Aug-2003
# Posted on: 16-Jul-2010 09:53:09   

Of course, but I'm not going to tell you.

The cli code generator is using parts of it for example, it's available in sourcecode, but contrary to v2, in v3 the cli code generator also requires a license. So I don't know what you want to do, but whatever you will do, each instance requires a license.

Frans Bouma | Lead developer LLBLGen Pro
nw
User
Posts: 42
Joined: 09-Jun-2010
# Posted on: 16-Jul-2010 10:16:27   

Otis wrote:

Of course, but I'm not going to tell you.

The cli code generator is using parts of it for example, it's available in sourcecode, but contrary to v2, in v3 the cli code generator also requires a license. So I don't know what you want to do, but whatever you will do, each instance requires a license.

So we are not allowed to use it? Each instance running it will definitely have a valid license. simple_smile

nw
User
Posts: 42
Joined: 09-Jun-2010
# Posted on: 16-Jul-2010 10:18:40   

Otis wrote:

Of course, but I'm not going to tell you.

The cli code generator is using parts of it for example, it's available in sourcecode, but contrary to v2, in v3 the cli code generator also requires a license. So I don't know what you want to do, but whatever you will do, each instance requires a license.

So I can download and view it under Extras -> LLBLGen Pro v3.0 Sourcecode?

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39614
Joined: 17-Aug-2003
# Posted on: 16-Jul-2010 10:19:20   

nw wrote:

Otis wrote:

Of course, but I'm not going to tell you.

The cli code generator is using parts of it for example, it's available in sourcecode, but contrary to v2, in v3 the cli code generator also requires a license. So I don't know what you want to do, but whatever you will do, each instance requires a license.

So I can download and view it under Extras -> LLBLGen Pro v3.0 Sourcecode?

Yes. simple_smile

validation etc. is done by calling the api, as shown in that code. If you want to do additional validation, you have to adjust the validator assemblies, or build that into a plugin which binds to one of the designer events.

Frans Bouma | Lead developer LLBLGen Pro
nw
User
Posts: 42
Joined: 09-Jun-2010
# Posted on: 16-Jul-2010 10:26:36   

Otis wrote:

nw wrote:

Otis wrote:

Of course, but I'm not going to tell you.

The cli code generator is using parts of it for example, it's available in sourcecode, but contrary to v2, in v3 the cli code generator also requires a license. So I don't know what you want to do, but whatever you will do, each instance requires a license.

So I can download and view it under Extras -> LLBLGen Pro v3.0 Sourcecode?

Yes. simple_smile

validation etc. is done by calling the api, as shown in that code. If you want to do additional validation, you have to adjust the validator assemblies, or build that into a plugin which binds to one of the designer events.

Thanks!