parent
47ff07c9a9
commit
82426569ca
@ -1,10 +1,7 @@ |
||||
eclipse.preferences.version=1 |
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled |
||||
org.eclipse.jdt.core.compiler.codegen.methodParameters=generate |
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 |
||||
org.eclipse.jdt.core.compiler.compliance=1.8 |
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error |
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error |
||||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning |
||||
org.eclipse.jdt.core.compiler.release=disabled |
||||
org.eclipse.jdt.core.compiler.source=1.8 |
||||
|
||||
@ -0,0 +1,2 @@ |
||||
eclipse.preferences.version=1 |
||||
org.eclipse.m2e.wtp.enabledProjectSpecificPrefs=false |
||||
@ -1,12 +1,12 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0"> |
||||
<wb-module deploy-name="vaadin-clubhelper-0.0.1-SNAPSHOT"> |
||||
<wb-resource deploy-path="/" source-path="/WebContent"/> |
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/> |
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/> |
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/target/generated-resources/gwt"/> |
||||
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/> |
||||
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/> |
||||
<property name="context-root" value="vaadin-clubhelper"/> |
||||
<property name="java-output-path" value="/vaadin-clubhelper/target/classes"/> |
||||
</wb-module> |
||||
</project-modules> |
||||
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0"> |
||||
<wb-module deploy-name="vaadin-clubhelper-0.0.1-SNAPSHOT"> |
||||
<wb-resource deploy-path="/" source-path="/WebContent"/> |
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/> |
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/> |
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/target/generated-resources/gwt"/> |
||||
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/> |
||||
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/> |
||||
<property name="context-root" value="vaadin-clubhelper"/> |
||||
<property name="java-output-path" value="/vaadin-clubhelper/target/classes"/> |
||||
</wb-module> |
||||
</project-modules> |
||||
|
||||
@ -0,0 +1,28 @@ |
||||
package de.kreth.vaadin.clubhelper.vaadinclubhelper.data; |
||||
|
||||
public class ClubeventHasPerson { |
||||
|
||||
private String clubEventId; |
||||
private int personId; |
||||
private String comment; |
||||
|
||||
public String getClubEventId() { |
||||
return clubEventId; |
||||
} |
||||
public void setClubEventId(String clubEventId) { |
||||
this.clubEventId = clubEventId; |
||||
} |
||||
public int getPersonId() { |
||||
return personId; |
||||
} |
||||
public void setPersonId(int personId) { |
||||
this.personId = personId; |
||||
} |
||||
public String getComment() { |
||||
return comment; |
||||
} |
||||
public void setComment(String comment) { |
||||
this.comment = comment; |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue