Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Antti Väyrynen / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • model
  • EventChildInterface.java
  • Tuomas Riihimäki's avatar
    I can has testdata! \o/ · 87b56a89
    Tuomas Riihimäki committed May 08, 2010
    87b56a89
EventChildInterface.java 405 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package fi.insomnia.bortal.model;


/**
 * 
 * @author tuukka
 */
public interface EventChildInterface extends ModelInterface<EventPk> {
    public EventPk getId();

    public void setId(EventPk id);

    
    public int getJpaVersionField();

    public void setJpaVersionField(int jpaVersionField);
}