Package com.dodo.blog.ui.component.simple

Examples of com.dodo.blog.ui.component.simple.Span


        contactWrapper.add( new Anchor( "", localize( "contact.label.linkedin" ), localize( "contact.href.linkedin" ) ) );
        contactWrapper.add( getSeparator() );
        contactWrapper.add( new Anchor( "", localize( "contact.label.facebook" ), localize( "contact.href.facebook" ) ) );

        // copyright
        Span copyright = new Span( localize( "label.copyright", WebApplication.get().getPathByPageClass( About.class ) ) );
        copyright.setClassName( "copyright" );
        add( copyright );
    }
View Full Code Here


        add( copyright );
    }

    private Span getSeparator()
    {
        Span separator = new Span( "|" );
        separator.setClassName( "separator" );
        return separator;
    }
View Full Code Here

            Anchor link = new Anchor( account.getUserInfo(), MyAccount.class );
            add( link );
        }
        else
        {
            add( new Span( localize(
                    "label.registerOrLogin",
                    webApplication.getPathByPageClass( Registration.class ),
                    webApplication.getPathByPageClass( Login.class ) ) ) );
        }
    }
View Full Code Here

TOP

Related Classes of com.dodo.blog.ui.component.simple.Span

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.