Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
monticore
EmbeddedMontiArc
languages
EmbeddedMontiArc
Commits
549f0aa7
Commit
549f0aa7
authored
Aug 26, 2019
by
Anna Maria Schmitz
Browse files
Add SomeIPtoEmamTagSchema
parent
be13fe75
Pipeline
#176156
failed with stage
in 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/de/monticore/lang/embeddedmontiarc/tagging/middleware/someip/SomeIPtoEmamTagSchema
0 → 100644
View file @
549f0aa7
/*
(
c
)
https
://
github
.
com
/
MontiCore
/
monticore
*/
package
de
.
monticore
.
lang
.
embeddedmontiarc
.
tagging
.
middleware
.
someip
;
import
de
.
monticore
.
lang
.
tagging
.
_symboltable
.
TaggingResolver
;
import
de
.
monticore
.
symboltable
.
resolving
.
CommonResolvingFilter
;
public
class
SomeIPtoEmamTagSchema
{
protected
static
SomeIPToEmamTagSchema
instance
=
null
;
protected
SomeIPToEmamTagSchema
()
{
}
protected
static
SomeIPToEmamTagSchema
getInstance
()
{
if
(
instance
==
null
)
{
instance
=
new
SomeIPToEmamTagSchema
();
}
return
instance
;
}
protected
void
doRegisterTagTypes
(
TaggingResolver
tagging
)
{
tagging
.
addTagSymbolCreator
(
new
SomeIPConnectionSymbolCreator
());
tagging
.
addTagSymbolResolvingFilter
(
CommonResolvingFilter
.
create
(
SomeIPConnectionSymbol
.
KIND
));
}
public
static
void
registerTagTypes
(
TaggingResolver
tagging
)
{
getInstance
().
doRegisterTagTypes
(
tagging
);
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment