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
    Hmm. vähän kaikkea, kai.. · 07f6ac62
    Tuomas Riihimäki committed Aug 17, 2010
    07f6ac62
EventChildInterface.java 396 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 25
/*
 * 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();
   
}