alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Hibernate example source code file (GlarchProxy.java)

This example Hibernate source code file (GlarchProxy.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Hibernate tags/keywords

glarchproxy, glarchproxy, list, list, map, map, multiplicity, object, object, set, string, util

The Hibernate GlarchProxy.java source code

package org.hibernate.test.legacy;
import java.util.List;
import java.util.Map;
import java.util.Set;

public interface GlarchProxy {
	
	public int getVersion();
	public int getDerivedVersion();
	public void setVersion(int version);
	
	public String getName();
	public void setName(String name);
	
	public GlarchProxy getNext();
	public void setNext(GlarchProxy next);
	
	public short getOrder();
	public void setOrder(short order);
	
	public List getStrings();
	public void setStrings(List strings);
	
	public Map getDynaBean();
	public void setDynaBean(Map bean);
	
	public Map getStringSets();
	public void setStringSets(Map stringSets);
	
	public List getFooComponents();
	public void setFooComponents(List fooComponents);
	
	public GlarchProxy[] getProxyArray();
	public void setProxyArray(GlarchProxy[] proxyArray);
	
	public Set getProxySet();
	public void setProxySet(Set proxySet);
	
	public Multiplicity getMultiple();
	public void setMultiple(Multiplicity m);
	
	public Object getAny();
	public void setAny(Object any);
}







Other Hibernate examples (source code examples)

Here is a short list of links related to this Hibernate GlarchProxy.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.