java.lang.Void Java Examples

The following examples show how to use java.lang.Void. 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: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void onChildClick(ExpandableListView.OnChildClickListener arg) {
  return BaseDSL.attr("onChildClick", arg);
}
 
Example #2
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void onItemLongClick(AdapterView.OnItemLongClickListener arg) {
  return BaseDSL.attr("onItemLongClick", arg);
}
 
Example #3
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void webView(Anvil.Renderable r) {
  return BaseDSL.v(WebView.class, r);
}
 
Example #4
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void queryHint(CharSequence arg) {
  return BaseDSL.attr("queryHint", arg);
}
 
Example #5
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void allCaps(boolean arg) {
  return BaseDSL.attr("allCaps", arg);
}
 
Example #6
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void clipChildren(boolean arg) {
  return BaseDSL.attr("clipChildren", arg);
}
 
Example #7
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void max(int arg) {
  return BaseDSL.attr("max", arg);
}
 
Example #8
Source File: SupportCoreUiDSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void shadowDrawableRight(Drawable arg) {
  return BaseDSL.attr("shadowDrawableRight", arg);
}
 
Example #9
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void saveFromParentEnabled(boolean arg) {
  return BaseDSL.attr("saveFromParentEnabled", arg);
}
 
Example #10
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void includeFontPadding(boolean arg) {
  return BaseDSL.attr("includeFontPadding", arg);
}
 
Example #11
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void scrollBarStyle(int arg) {
  return BaseDSL.attr("scrollBarStyle", arg);
}
 
Example #12
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void scrollbarFadingEnabled(boolean arg) {
  return BaseDSL.attr("scrollbarFadingEnabled", arg);
}
 
Example #13
Source File: AppCompatv7DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void verticalGravity(int arg) {
  return BaseDSL.attr("verticalGravity", arg);
}
 
Example #14
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void view(Anvil.Renderable r) {
  return BaseDSL.v(View.class, r);
}
 
Example #15
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void scrollX(int arg) {
  return BaseDSL.attr("scrollX", arg);
}
 
Example #16
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void overscrollFooter(Drawable arg) {
  return BaseDSL.attr("overscrollFooter", arg);
}
 
Example #17
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void renderMode(int arg) {
  return BaseDSL.attr("renderMode", arg);
}
 
Example #18
Source File: AppCompatv7DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void autoSizeTextTypeWithDefaults(int arg) {
  return BaseDSL.attr("autoSizeTextTypeWithDefaults", arg);
}
 
Example #19
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void drawingCacheQuality(int arg) {
  return BaseDSL.attr("drawingCacheQuality", arg);
}
 
Example #20
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void clipChildren(boolean arg) {
  return BaseDSL.attr("clipChildren", arg);
}
 
Example #21
Source File: DesignDSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void size(int arg) {
  return BaseDSL.attr("size", arg);
}
 
Example #22
Source File: DesignDSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void errorEnabled(boolean arg) {
  return BaseDSL.attr("errorEnabled", arg);
}
 
Example #23
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void footerDividersEnabled(boolean arg) {
  return BaseDSL.attr("footerDividersEnabled", arg);
}
 
Example #24
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void button(Anvil.Renderable r) {
  return BaseDSL.v(Button.class, r);
}
 
Example #25
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void addStatesFromChildren(boolean arg) {
  return BaseDSL.attr("addStatesFromChildren", arg);
}
 
Example #26
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void absListView(Anvil.Renderable r) {
  return BaseDSL.v(AbsListView.class, r);
}
 
Example #27
Source File: SupportCoreUiDSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void space(Anvil.Renderable r) {
  return BaseDSL.v(Space.class, r);
}
 
Example #28
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void hapticFeedbackEnabled(boolean arg) {
  return BaseDSL.attr("hapticFeedbackEnabled", arg);
}
 
Example #29
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void keyProgressIncrement(int arg) {
  return BaseDSL.attr("keyProgressIncrement", arg);
}
 
Example #30
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void remoteViewsAdapter(Intent arg) {
  return BaseDSL.attr("remoteViewsAdapter", arg);
}