jsweet.lang.Interface.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(6.5k)|赞(0)|评价(0)|浏览(101)

本文整理了Java中jsweet.lang.Interface.<init>()方法的一些代码示例,展示了Interface.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Interface.<init>()方法的具体详情如下:
包路径:jsweet.lang.Interface
类名称:Interface
方法名:<init>

Interface.<init>介绍

暂无

代码示例

代码示例来源:origin: org.jsweet.candies/jsweet-core

/** <div> <p><strong><span><i> </i></span> Obsolete</strong><br></br>This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.</p> </div> */
@jsweet.lang.Interface
public abstract class ElementTraversal extends jsweet.lang.Object {
  public double childElementCount;
  public Element firstElementChild;
  public Element lastElementChild;
  public Element nextElementSibling;
  public Element previousElementSibling;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class IDBIndexParameters extends jsweet.lang.Object {
  @jsweet.lang.Optional
  public Boolean unique;
  @jsweet.lang.Optional
  public Boolean multiEntry;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class FilePropertyBag extends jsweet.lang.Object {
  @jsweet.lang.Optional
  public String type;
  @jsweet.lang.Optional
  public double lastModified;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class ArrayLike<T> extends jsweet.lang.Object implements Iterable<T> {
  public final double length=0;
  native public T $get(double n);
  /** From Iterable, to allow foreach loop (do not use directly). */
  @jsweet.lang.Erased
  native public java.util.Iterator<T> iterator();
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class StoreSiteSpecificExceptionsInformation extends StoreExceptionsInformation {
  @jsweet.lang.Optional
  public String[] arrayOfDomainStrings;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class SVGUnitTypes extends jsweet.lang.Object {
  public static double SVG_UNIT_TYPE_OBJECTBOUNDINGBOX;
  public static double SVG_UNIT_TYPE_UNKNOWN;
  public static double SVG_UNIT_TYPE_USERSPACEONUSE;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class ConfirmSiteSpecificExceptionsInformation extends ExceptionInformation {
  @jsweet.lang.Optional
  public String[] arrayOfDomainStrings;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

/**  <p>The <code><strong>WindowBase64</strong></code> helper contains utility methods to convert data to and from base64, a binary-to-text encoding scheme. For example it is used in data URIs.</p> <p>There is no object of this type, though the context object, either the <code>Window</code> for regular browsing scope, or the <code>WorkerGlobalScope</code>&nbsp; for workers, implements it.</p>  */
@jsweet.lang.Interface
public abstract class WindowBase64 extends jsweet.lang.Object {
  /** 
 Decodes a string of data which has been encoded using base-64 encoding.  */
  native public String atob(String encodedString);
  /** 
 Creates a base-64 encoded ASCII string from a string of binary data.  */
  native public String btoa(String rawString);
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class DeviceAccelerationDict extends jsweet.lang.Object {
  @jsweet.lang.Optional
  public double x;
  @jsweet.lang.Optional
  public double y;
  @jsweet.lang.Optional
  public double z;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

/** <p>The <code><strong>LinkStyle</strong></code> interface allows to access the <em>associated CSS style sheet</em> of a node.</p> <p><code>LinkStyle</code> is a raw interface and no object of this type can be created; it is implemented by <code>HTMLLinkElement</code> and <code>HTMLStyleElement</code> objects.</p>  */
@jsweet.lang.Interface
public abstract class LinkStyle extends jsweet.lang.Object {
  /** 
 Returns the <code>StyleSheet</code> object associated with the given element, or <code>null</code> if there is none.  */
  public StyleSheet sheet;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class ResolvedCollatorOptions extends jsweet.lang.Object {
  public String locale;
  public String usage;
  public String sensitivity;
  public Boolean ignorePunctuation;
  public String collation;
  public String caseFirst;
  public Boolean numeric;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class SVGURIReference extends jsweet.lang.Object {
  public SVGAnimatedString href;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class TemplateStringsArray extends Array<java.lang.String> {
  public final java.lang.String[] raw=null;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class PropertyDescriptor extends jsweet.lang.Object {
  @jsweet.lang.Optional
  public java.lang.Boolean configurable;
  @jsweet.lang.Optional
  public java.lang.Boolean enumerable;
  @jsweet.lang.Optional
  public java.lang.Object value;
  @jsweet.lang.Optional
  public java.lang.Boolean writable;
  native public java.lang.Object get();
  native public void set(java.lang.Object v);
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class SVGExternalResourcesRequired extends jsweet.lang.Object {
  public SVGAnimatedBoolean externalResourcesRequired;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class AriaRequestEventInit extends EventInit {
  @jsweet.lang.Optional
  public String attributeName;
  @jsweet.lang.Optional
  public String attributeValue;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class DeviceRotationRateDict extends jsweet.lang.Object {
  @jsweet.lang.Optional
  public double alpha;
  @jsweet.lang.Optional
  public double beta;
  @jsweet.lang.Optional
  public double gamma;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class BlobPropertyBag extends jsweet.lang.Object {
  @jsweet.lang.Optional
  public String type;
  @jsweet.lang.Optional
  public String endings;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class KeyboardEventInit extends SharedKeyboardAndMouseEventInit {
  @jsweet.lang.Optional
  public String key;
  @jsweet.lang.Optional
  public double location;
  @jsweet.lang.Optional
  public Boolean repeat;
}

代码示例来源:origin: org.jsweet.candies/jsweet-core

@jsweet.lang.Interface
public abstract class MSFileSaver extends jsweet.lang.Object {
  native public Boolean msSaveBlob(Object blob, String defaultName);
  native public Boolean msSaveOrOpenBlob(Object blob, String defaultName);
  native public Boolean msSaveBlob(Object blob);
  native public Boolean msSaveOrOpenBlob(Object blob);
}

相关文章

微信公众号

最新文章

更多

Interface类方法