Package com.intellij.openapi.util

Examples of com.intellij.openapi.util.InvalidDataException


      }
      else if (DOUBLE_CLICK.equals(token)) {
        clickCount = 2;
      }
      else {
        throw new InvalidDataException("unknown token: " + token);
      }
    }
    return new MouseShortcut(button, modifiers, clickCount);
  }
View Full Code Here


    }
    else if (ICON_IMPORTANT.equals(icon)){
      myIcon = IMPORTANT_ICON;
    }
    else{
      throw new InvalidDataException(icon);
    }
    myTextAttributes.readExternal(element);
    if (element.getChild(ELEMENT_OPTION) == null) {
      myTextAttributes = createDefaultTextAttributes();
    }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.util.InvalidDataException

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.