~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/jgdi/templates/java_delevent.jsp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*___INFO__MARK_BEGIN__*/
 
2
/*************************************************************************
 
3
 *
 
4
 *  The Contents of this file are made available subject to the terms of
 
5
 *  the Sun Industry Standards Source License Version 1.2
 
6
 *
 
7
 *  Sun Microsystems Inc., March, 2001
 
8
 *
 
9
 *
 
10
 *  Sun Industry Standards Source License Version 1.2
 
11
 *  =================================================
 
12
 *  The contents of this file are subject to the Sun Industry Standards
 
13
 *  Source License Version 1.2 (the "License"); You may not use this file
 
14
 *  except in compliance with the License. You may obtain a copy of the
 
15
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
16
 *
 
17
 *  Software provided under this License is provided on an "AS IS" basis,
 
18
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
19
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
20
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
21
 *  See the License for the specific provisions governing your rights and
 
22
 *  obligations concerning the Software.
 
23
 *
 
24
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
25
 *
 
26
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
27
 *
 
28
 *   All Rights Reserved.
 
29
 *
 
30
 ************************************************************************/
 
31
/*___INFO__MARK_END__*/
 
32
/**
 
33
 *  Generated from java_delevent.jsp
 
34
 *  !!! DO NOT EDIT THIS FILE !!!
 
35
 */
 
36
<%
 
37
  com.sun.grid.cull.JavaHelper jh = (com.sun.grid.cull.JavaHelper)params.get("javaHelper");
 
38
  com.sun.grid.cull.CullObject cullObj = (com.sun.grid.cull.CullObject)params.get("cullObj");
 
39
  com.sun.grid.cull.CullAttr   attr = null;
 
40
  
 
41
  String name = jh.getNonPrimitiveClassname(cullObj);
 
42
  
 
43
%>
 
44
package <%=jh.getPackageName()%>;
 
45
 
 
46
import com.sun.grid.jgdi.event.DelEvent;
 
47
<% if(cullObj.getType() != cullObj.TYPE_PRIMITIVE) { %>
 
48
import <%=jh.getFullClassName(cullObj)%>;
 
49
<% } %>
 
50
 
 
51
/**
 
52
 */
 
53
public class <%=name%>DelEvent extends DelEvent implements java.io.Serializable {
 
54
 
 
55
<% // Default constructor ----------------------------------------- %>
 
56
  public <%=name%>DelEvent(long timestamp, int eventID) {
 
57
     super(timestamp, eventID, <%=jh.getClassName(cullObj)%>.class );
 
58
  } // end of default constructor
 
59
 
 
60
  public void set(<%=jh.getClassName(cullObj)%> obj) {
 
61
     super.setChangedObject(obj);
 
62
  }
 
63
  
 
64
  public <%=jh.getClassName(cullObj)%> get() {
 
65
     return (<%=jh.getClassName(cullObj)%>) getChangedObject();
 
66
  }
 
67
 
 
68
  
 
69
<%@include file="java_event_pkinfo.jsp"%>    
 
70
  
 
71
   
 
72
   /**
 
73
    *  Determine if this event has deleted <code>obj</code>
 
74
    *  @param   obj  the object
 
75
    *  @return  <code>true</code> if this event has deleted <code>obj</code>
 
76
    */
 
77
   public boolean hasDeletedObject(Object obj) {
 
78
 
 
79
      if (obj instanceof  <%=jh.getClassName(cullObj)%>) {
 
80
          <%=jh.getClassName(cullObj)%> obj1 = (<%=jh.getClassName(cullObj)%>)obj;
 
81
<%
 
82
  {
 
83
      for(int i = 0; i < cullObj.getPrimaryKeyCount(); i++) {
 
84
         attr = cullObj.getPrimaryKeyAttr(i);
 
85
         
 
86
         String attrName = jh.getAttrName(attr);
 
87
         if( attrName.endsWith("List") ) {          
 
88
            attrName  = attrName.substring(0, attrName.length() - 4 );
 
89
         }
 
90
         String gsmName = Character.toUpperCase(attrName.charAt(0)) + attrName.substring(1);
 
91
 
 
92
         if(jh.getFullClassName(attr.getType()).equals(String.class.getName())) {
 
93
%>         // Attention: strkey must be set for cull event elem
 
94
         if (!m_<%=attrName%>.equals(obj1.get<%=gsmName%>())) {
 
95
<%
 
96
         } else if (jh.getClassName(attr.getType()).equals("int")) {
 
97
%>         // Attention: intkey must be set for cull event elem   
 
98
         if (m_<%=attrName%> != obj1.get<%=gsmName%>()) {
 
99
<%
 
100
         } else {
 
101
 
 
102
           throw new IllegalStateException("Can not handle primary key field with type " + attr.getType()); 
 
103
         }
 
104
%>             return false;
 
105
         }
 
106
<%         
 
107
      } // end of for
 
108
  }
 
109
%>   
 
110
         return true;
 
111
      }
 
112
      return false;
 
113
   }
 
114
   
 
115
   public String toString() {
 
116
      StringBuilder ret = new StringBuilder();
 
117
      ret.append(super.toString());
 
118
      ret.append(",");
 
119
      ret.append("<%=jh.getClassName(cullObj)%>");
 
120
      ret.append("(");
 
121
<%      
 
122
  {
 
123
      for(int i = 0; i < cullObj.getPrimaryKeyCount(); i++) {
 
124
         attr = cullObj.getPrimaryKeyAttr(i);
 
125
         String attrName = jh.getAttrName(attr);
 
126
         if( attrName.endsWith("List") ) {          
 
127
            attrName  = attrName.substring(0, attrName.length() - 4 );
 
128
         }
 
129
         String gsmName = Character.toUpperCase(attrName.charAt(0)) + attrName.substring(1);
 
130
 
 
131
%>          ret.append(m_<%=attrName%>);
 
132
<%
 
133
      } // end of for
 
134
  }
 
135
%>   
 
136
      ret.append(")");
 
137
      return ret.toString();
 
138
   }
 
139
  
 
140
}