su4sml/src/codegen/templates/java.tpl

64 lines
1.2 KiB
Smarty
Raw Normal View History

@// Simple template for Java
@foreach nonprimitive_classifier_list
@openfileifnotexists generated/src/main/java/$classifier_package_path$/$classifier_name$.java
package $classifier_package$;
@nl@nl
@if isClass
public class $classifier_name$
@end
@if isInterface
public interface $classifier_name$
@end
@if isEnumeration
public enum $classifier_name$
@end
@if notInterface
@if hasParent
@spcextends $classifier_parent$
@end
@end
@if hasParentInterfaces
@if isInterface
@spcextends
@else
@spcimplements
@end
@foreach parent_interface_list
@if last_interface
$parent_interface$
@else
$parent_interface$,
@end
@end
@end
@spc{
@if notInterface
@foreach attribute_list
@nl@tab$attribute_visibility$ $attribute_type$ $attribute_name$;
@end
@nl
@end
@foreach operation_list
@nl@tab$operation_visibility$ $operation_result_type$ $operation_name$(
@foreach argument_list
@if last_argument
$argument_type$ $argument_name$
@else
$argument_type$ $argument_name$,@spc
@end
@end
)
@if notInterface
@spc{@nl
@if operation_non_void
@tab@tabreturn $returnvalue_stub$;
@end
@nl@tab}@nl
@else
;
@end
@end
@nl}
@end