1 package org.smartcomps.twister.engine.priv.core.definition;
2
3 // TODO Manage typed property
4 public interface Property {
5
6 public String getName();
7 public void setName(String name);
8
9 public String getType();
10 public void setType(String type);
11
12 public PropertyAlias getAlias();
13 public void setAlias(PropertyAlias alias);
14 }
This page was automatically generated by Maven