Examples of Bookmark


Examples of lineage2.gameserver.model.actor.instances.player.BookMark

  protected void runImpl()
  {
    final Player activeChar = getClient().getActiveChar();
    if (activeChar != null)
    {
      final BookMark mark = activeChar.bookmarks.get(slot);
      if (mark != null)
      {
        mark.setName(name);
        mark.setIcon(icon);
        mark.setAcronym(acronym);
        activeChar.sendPacket(new ExGetBookMarkInfo(activeChar));
      }
    }
  }
View Full Code Here

Examples of net.sf.jpluck.plucker.Bookmark

    Paragraph addParagraph(boolean force) {
        return addParagraph(Paragraph.DEFAULT_SPACING, force);
    }
   
    void addBookmark(String name, String uri) {
      bookmarks.add(new Bookmark(name, uri));
    }
View Full Code Here

Examples of org.albite.book.model.book.Bookmark

                // write pre-action user code here
                bookmarkAdding = false;

                final Book book = bookCanvas.getCurrentBook();
                final int pos = getBookmarks().getSelectedIndex();
                final Bookmark bookmark =
                        book.getBookmarkManager().bookmarkAt(pos);

                if (bookmark != null) {
                    getBookmarkText().setString(bookmark.getText());
                }

                canEditBookmark();//GEN-LINE:|7-commandAction|24|920-postAction
                // write post-action user code here
            } else if (command == GO_COMMAND) {//GEN-LINE:|7-commandAction|25|916-preAction
View Full Code Here

Examples of org.apache.directory.ldapstudio.browser.core.internal.model.Bookmark

    {
        if ( selectedEntry != null )
        {
            String name = mainPage.getBookmarkName();
            DN dn = mainPage.getBookmarkDn();
            IBookmark bookmark = new Bookmark( selectedEntry.getConnection(), dn, name );
            selectedEntry.getConnection().getBookmarkManager().addBookmark( bookmark );
        }
        mainPage.saveDialogSettings();
        return true;
    }
View Full Code Here

Examples of org.apache.directory.studio.ldapbrowser.core.internal.model.Bookmark

    {
        if ( selectedEntry != null )
        {
            String name = mainPage.getBookmarkName();
            DN dn = mainPage.getBookmarkDn();
            IBookmark bookmark = new Bookmark( selectedEntry.getBrowserConnection(), dn, name );
            selectedEntry.getBrowserConnection().getBookmarkManager().addBookmark( bookmark );
        }
        mainPage.saveDialogSettings();
        return true;
    }
View Full Code Here

Examples of org.apache.directory.studio.ldapbrowser.core.model.impl.Bookmark

    {
        if ( selectedEntry != null )
        {
            String name = mainPage.getBookmarkName();
            LdapDN dn = mainPage.getBookmarkDn();
            IBookmark bookmark = new Bookmark( selectedEntry.getBrowserConnection(), dn, name );
            selectedEntry.getBrowserConnection().getBookmarkManager().addBookmark( bookmark );
        }
        mainPage.saveDialogSettings();
        return true;
    }
View Full Code Here

Examples of org.apache.fop.fo.pagination.bookmarks.Bookmark

        whenToProcess = END_OF_DOC;
        // top level defined in Rec to show all child bookmarks
        bShow = true;

        for (int count = 0; count < bookmarkTree.getBookmarks().size(); count++) {
            Bookmark bkmk = (Bookmark)(bookmarkTree.getBookmarks()).get(count);
            addSubData(createBookmarkData(bkmk));
        }
    }
View Full Code Here

Examples of org.apache.fop.render.intermediate.extensions.Bookmark

    /** {@inheritDoc} */
    public void renderBookmarkTree(BookmarkTree tree) throws IFException {
        Iterator iter = tree.getBookmarks().iterator();
        while (iter.hasNext()) {
            Bookmark b = (Bookmark)iter.next();
            renderBookmark(b, null);
        }
    }
View Full Code Here

Examples of org.apache.isis.applib.services.bookmark.Bookmark

            final String title = oidStr + ": " + actionIdentifier.toNameParmsIdentityString();
           
            final Command command = currentInvocation.getCommand();
            final String targetClass = command.getTargetClass();
            final String targetAction = command.getTargetAction();
            final Bookmark target = command.getTarget();
            final String memberIdentifier = command.getMemberIdentifier();
           
            final EventMetadata metadata = newEventMetadata(EventType.ACTION_INVOCATION, currentUser, timestamp, title, targetClass, targetAction, target, memberIdentifier);
            publishingService.publishAction(payloadFactory, metadata, currentInvocation, objectStringifier());
        } finally {
View Full Code Here

Examples of org.apache.poi.hwpf.usermodel.Bookmark

        HWPFDocument document = (HWPFDocument) _doc;
        Bookmarks bookmarks = document.getBookmarks();
        for ( int b = 0; b < bookmarks.getBookmarksCount(); b++ )
        {
            Bookmark bookmark = bookmarks.getBookmark( b );
            System.out.println( "[" + bookmark.getStart() + "; "
                    + bookmark.getEnd() + "): " + bookmark.getName() );
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.