Java Code Examples for javax.tools.JavaFileObject.Kind#getClass()
The following examples show how to use
javax.tools.JavaFileObject.Kind#getClass() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SimpleJavaFileObject.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
/** * Construct a SimpleJavaFileObject of the given kind and with the * given URI. * * @param uri the URI for this file object * @param kind the kind of this file object */ protected SimpleJavaFileObject(URI uri, Kind kind) { // null checks uri.getClass(); kind.getClass(); if (uri.getPath() == null) throw new IllegalArgumentException("URI must have a path: " + uri); this.uri = uri; this.kind = kind; }
Example 2
Source File: SimpleJavaFileObject.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Construct a SimpleJavaFileObject of the given kind and with the * given URI. * * @param uri the URI for this file object * @param kind the kind of this file object */ protected SimpleJavaFileObject(URI uri, Kind kind) { // null checks uri.getClass(); kind.getClass(); if (uri.getPath() == null) throw new IllegalArgumentException("URI must have a path: " + uri); this.uri = uri; this.kind = kind; }
Example 3
Source File: SimpleJavaFileObject.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * Construct a SimpleJavaFileObject of the given kind and with the * given URI. * * @param uri the URI for this file object * @param kind the kind of this file object */ protected SimpleJavaFileObject(URI uri, Kind kind) { // null checks uri.getClass(); kind.getClass(); if (uri.getPath() == null) throw new IllegalArgumentException("URI must have a path: " + uri); this.uri = uri; this.kind = kind; }
Example 4
Source File: SimpleJavaFileObject.java From JDKSourceCode1.8 with MIT License | 5 votes |
/** * Construct a SimpleJavaFileObject of the given kind and with the * given URI. * * @param uri the URI for this file object * @param kind the kind of this file object */ protected SimpleJavaFileObject(URI uri, Kind kind) { // null checks uri.getClass(); kind.getClass(); if (uri.getPath() == null) throw new IllegalArgumentException("URI must have a path: " + uri); this.uri = uri; this.kind = kind; }
Example 5
Source File: SimpleJavaFileObject.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Construct a SimpleJavaFileObject of the given kind and with the * given URI. * * @param uri the URI for this file object * @param kind the kind of this file object */ protected SimpleJavaFileObject(URI uri, Kind kind) { // null checks uri.getClass(); kind.getClass(); if (uri.getPath() == null) throw new IllegalArgumentException("URI must have a path: " + uri); this.uri = uri; this.kind = kind; }
Example 6
Source File: SimpleJavaFileObject.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * Construct a SimpleJavaFileObject of the given kind and with the * given URI. * * @param uri the URI for this file object * @param kind the kind of this file object */ protected SimpleJavaFileObject(URI uri, Kind kind) { // null checks uri.getClass(); kind.getClass(); if (uri.getPath() == null) throw new IllegalArgumentException("URI must have a path: " + uri); this.uri = uri; this.kind = kind; }
Example 7
Source File: SimpleJavaFileObject.java From Java8CN with Apache License 2.0 | 5 votes |
/** * Construct a SimpleJavaFileObject of the given kind and with the * given URI. * * @param uri the URI for this file object * @param kind the kind of this file object */ protected SimpleJavaFileObject(URI uri, Kind kind) { // null checks uri.getClass(); kind.getClass(); if (uri.getPath() == null) throw new IllegalArgumentException("URI must have a path: " + uri); this.uri = uri; this.kind = kind; }
Example 8
Source File: SimpleJavaFileObject.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * Construct a SimpleJavaFileObject of the given kind and with the * given URI. * * @param uri the URI for this file object * @param kind the kind of this file object */ protected SimpleJavaFileObject(URI uri, Kind kind) { // null checks uri.getClass(); kind.getClass(); if (uri.getPath() == null) throw new IllegalArgumentException("URI must have a path: " + uri); this.uri = uri; this.kind = kind; }
Example 9
Source File: SimpleJavaFileObject.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * Construct a SimpleJavaFileObject of the given kind and with the * given URI. * * @param uri the URI for this file object * @param kind the kind of this file object */ protected SimpleJavaFileObject(URI uri, Kind kind) { // null checks uri.getClass(); kind.getClass(); if (uri.getPath() == null) throw new IllegalArgumentException("URI must have a path: " + uri); this.uri = uri; this.kind = kind; }
Example 10
Source File: SimpleJavaFileObject.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * Construct a SimpleJavaFileObject of the given kind and with the * given URI. * * @param uri the URI for this file object * @param kind the kind of this file object */ protected SimpleJavaFileObject(URI uri, Kind kind) { // null checks uri.getClass(); kind.getClass(); if (uri.getPath() == null) throw new IllegalArgumentException("URI must have a path: " + uri); this.uri = uri; this.kind = kind; }
Example 11
Source File: SimpleJavaFileObject.java From preferencebinder with Apache License 2.0 | 5 votes |
/** * Construct a SimpleJavaFileObject of the given kind and with the * given URI. * * @param uri the URI for this file object * @param kind the kind of this file object */ protected SimpleJavaFileObject(URI uri, Kind kind) { // null checks uri.getClass(); kind.getClass(); if (uri.getPath() == null) throw new IllegalArgumentException("URI must have a path: " + uri); this.uri = uri; this.kind = kind; }