Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Max Mecklin / 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
  • Juho Juopperi's avatar
    omat jutut · 7f68ac52
    Juho Juopperi committed Oct 28, 2010
    7f68ac52 Browse Files
EventChildInterface.java 392 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package fi.insomnia.bortal.model;

import java.io.Serializable;

/**
 * 
 * @author tuukka
 */
public interface EventChildInterface extends Serializable {

    EventPk getId();

    void setId(EventPk id);

    void setJpaVersionField(int jpaVersionField);

    int getJpaVersionField();

}