Click here to Skip to main content
15,885,737 members
Articles / Programming Languages / Java

Pivot 1.4, Spring and Hibernate is my RPG Game

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
29 Mar 2010CPOL12 min read 37.8K   550   8  
Pivot 1.4, Spring and Hibernate is my RPG Game
<?xml version="1.0" encoding="UTF-8"?>
<!-- 
/**
 * A tutorial for Article Pivot 1.4, Spring and Hibernate is my RPG Game.
 * 
 * Author	: Adrabi Abderrahim
 * E-mail	: adrabi[at]gmail[dot]com
 * Year		: 2010
 * License	: The Code Project Open License (CPOL) 
 * 				http://www.codeproject.com/info/cpol10.aspx
 * 
 */
 -->
<Dialog wtkx:id="dialogEditMob" title="Edit Mob!"
	xmlns:wtkx="http://pivot.apache.org/wtkx"
	xmlns="org.apache.pivot.wtk">
	<content>
		<BoxPane>
        	<Form wtkx:id="formEditMobs">
            	<sections>
            		<Form.Section>
            			<Label wtkx:id="labelID" Form.label="ID" textKey="id"/>
            			<Label wtkx:id="labelSprite" Form.label="Sprite" textKey="sprite"/>
            			<TextInput wtkx:id="textName" Form.label="Name" textKey="name"/>
            			<TextInput wtkx:id="textLevel" Form.label="Level" textKey="level"/>
            			<TextInput wtkx:id="textHP" Form.label="HP" textKey="hp"/>
            			<TextInput wtkx:id="textSP" Form.label="SP" textKey="sp"/>
            			<TextInput wtkx:id="textRace" Form.label="Race" textKey="race"/>
            			<Separator/>
            			<Label wtkx:id="labelMessage"/>
            		</Form.Section>
            	</sections>
            </Form>
            <BoxPane>
				<PushButton wtkx:id="btnSave" buttonData="Save"/>
            	<PushButton wtkx:id="btnClose" buttonData="Close"/>
            </BoxPane>
        </BoxPane>
	</content>
</Dialog>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Morocco Morocco
Adrabi!, Just another Ghost in the Shell =)

Comments and Discussions