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

Java EE 6 example source code file (create.xhtml)

This example Java EE 6 source code file (create.xhtml) 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 - Java EE 6 tags/keywords

cddl, cddl, contributor, copyright, gpl, gpl, header, if, license, license, or, sun, version, version

The Java EE 6 create.xhtml source code

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!--

 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

 Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.

 The contents of this file are subject to the terms of either the GNU
 General Public License Version 2 only ("GPL") or the Common Development
 and Distribution License("CDDL") (collectively, the "License").  You
 may not use this file except in compliance with the License. You can obtain
 a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
 or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
 language governing permissions and limitations under the License.

 When distributing the software, include this License Header Notice in each
 file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
 Sun designates this particular file as subject to the "Classpath" exception
 as provided by Sun in the GPL Version 2 section of the License file that
 accompanied this code.  If applicable, add the following below the License
 Header, with the fields enclosed by brackets [] replaced by your own
 identifying information: "Portions Copyrighted [year]
 [name of copyright owner]"

 Contributor(s):

 If you wish your version of this file to be governed by only the CDDL or
 only the GPL Version 2, indicate your decision by adding "[Contributor]
 elects to include this software in this distribution under the [CDDL or GPL
 Version 2] license."  If you don't indicate a single choice of license, a
 recipient has the option to distribute your version of this file under
 either the CDDL, the GPL Version 2 or to extend the choice of license to
 its licensees as provided above.  However, if you add GPL Version 2 code
 and therefore, elected the GPL Version 2 license, then the option applies
 only if the new code is made subject to such option by the copyright
 holder.

-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core" >

    <ui:composition template="/template.xhtml">
        <ui:define name="pageTitle">
            <h:outputText value="#{i18n['task.create.title']}">
        </ui:define>
        <ui:define name="navigationBar">
            <h:commandLink  immediate="true" action="/project/show" value="#{i18n['navigation.projects']}">
            <h:outputText value="#{i18n['navigation.separtor']}">
            <h:commandLink  immediate="true" action="/project/edit"  value="#{sprintManager.project.name}">
            <h:outputText value="#{i18n['navigation.separtor']}">
            <h:commandLink  immediate="true" action="/sprint/show" value="#{i18n['navigation.sprints']}">
            <h:outputText value="#{i18n['navigation.separtor']}">
            <h:commandLink  immediate="true" action="/sprint/edit"  value="#{sprintManager.currentSprint.name}">
            <h:outputText value="#{i18n['navigation.separtor']}">
            <h:commandLink  immediate="true" action="/story/show" value="#{i18n['navigation.stories']}">
            <h:outputText value="#{i18n['navigation.separtor']}">
            <h:commandLink  immediate="true" action="/story/edit" value="#{taskManager.story.name}">
            <h:outputText value=" > ">
            <h:outputText value="#{i18n['task.create.form.title']}" styleClass="tituloForm">
        </ui:define>
        <ui:define name="content">

            <h:form  id="createTaskForm">
                <h:panelGrid columns="3" headerClass="tituloForm" footerClass="footerForm">
                    <ui:include src="form.xhtml" />
                    <f:facet name="footer">
                        <h:commandButton rendered="#{storyManager.sprint.name != null}" id="btnCreate" action="#{taskManager.save}" value="#{i18n['task.create.button.create']}" styleClass="botaoPostIt" />
                        <h:commandButton rendered="#{storyManager.sprint.name != null}" id="btnCancel" action="show" value="#{i18n['task.create.button.cancel']}" styleClass="botaoPostIt" immediate="true" />
                    </f:facet>
                </h:panelGrid>
            </h:form>
        </ui:define>
    </ui:composition>

</html>

Other Java EE 6 examples (source code examples)

Here is a short list of links related to this Java EE 6 create.xhtml 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.