Package ui.room

Examples of ui.room.Room.changeStatus()


            case Message.NOTICE:
              sendMessageToRoom(m, r, strippedLine);
              break;
            case Message.CONSOLE:
              r.newMessage(strippedLine);
              r.changeStatus(Room.NEW_IRC_EVENT);
              break;
            }

            if (scrollDown)
              r.getOutput().setSelection(
View Full Code Here


          r.newMessage(strippedLine, true);

          // TODO make a room function to handle this
          if (strippedLine.toLowerCase().contains(
              m.getBot().getNick().toLowerCase()))
            r.changeStatus(Room.NAME_CALLED);
          else
            r.changeStatus(Room.NEW_MESSAGE);
        }

        private void linkify(Room r, String strippedLine, String s) {
View Full Code Here

          // TODO make a room function to handle this
          if (strippedLine.toLowerCase().contains(
              m.getBot().getNick().toLowerCase()))
            r.changeStatus(Room.NAME_CALLED);
          else
            r.changeStatus(Room.NEW_MESSAGE);
        }

        private void linkify(Room r, String strippedLine, String s) {
          Color blue = new Color(r.getOutput().getDisplay(), 0, 0,
              255);
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.