001    /*
002     * Copyright 2004 Chris Nelson
003     *
004     * Licensed under the Apache License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
007     * Unless required by applicable law or agreed to in writing,
008     * software distributed under the License is distributed on an "AS IS" BASIS,
009     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
010     * See the License for the specific language governing permissions and limitations under the License.
011     */
012    package org.trails.link;
013    
014    import org.trails.page.PageType;
015    import org.apache.tapestry.annotations.ComponentClass;
016    
017    /**
018     * Render a link allowing a new entity of the parameterized type to be created.
019     */
020    @ComponentClass
021    public abstract class NewLink extends AbstractTypeNavigationLink
022    {
023    
024            public PageType getPageType()
025            {
026                    return PageType.NEW;
027            }
028    
029            public String getBundleKey()
030            {
031                    return "org.trails.component.newlink";
032            }
033    
034            public String getDefaultMessage()
035            {
036                    return "[TRAILS][ORG.TRAILS.COMPONENT.NEWLINK]";
037            }
038    
039            public Object getParams()
040            {
041                    return getClassDescriptor().getDisplayName();
042            }
043    }