Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Plug-In
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TeeTime
Plug-In
Commits
f23ec4bd
There was a problem fetching the pipeline summary.
Commit
f23ec4bd
authored
9 years ago
by
Nelson Tavares de Sousa
Browse files
Options
Downloads
Patches
Plain Diff
added an example
parent
623d6f8a
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+25
-1
25 additions, 1 deletion
README.md
with
25 additions
and
1 deletion
README.md
+
25
−
1
View file @
f23ec4bd
...
...
@@ -4,3 +4,27 @@ Import all projects into eclipse, right-click on teetime.configuration.klighd/pl
and then Run as -> Eclipse Application.
You can now create .configuration models and visualize them by right-clicking on the file and then "Open Configuration Diagram".
example:
de.dsl.evaluation EvalConfiguration(File input, File output, String password){
//imports
import java.io.File
import teetime.stage.ZipByteArray.ZipMode
import teetime.stage.io.File2ByteArray
import teetime.stage.CipherStage.CipherMode
//stages
InitialElementProducer
<File>
init(input)
File2ByteArray f2b
active CipherStage enc(password, CipherMode.ENCRYPT)
ZipByteArray comp(ZipMode.COMP)
ZipByteArray decomp(ZipMode.DECOMP)
active teetime.stage.CipherStage decrypt(password, CipherMode.DECRYPT)
teetime.stage.io.ByteArrayFileWriter writer(output)
//connections
init.asd->enc.sfd
comp->decrypt->enc
f2b->enc
decomp->writer->enc
f2b->init
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment