Download

JFoenix is an open source java library, that implements Google Material Design using java components. To start using JFoenix, all you have to is download it from GitHub. You can find JFoneix source files along with a compiled jar file on the following link:

Setup

Once JFoenix jar file is included in your project, you can use JFoenix components.

Scene Builder Setup

To import JFoenix components in scene builder do the follwing:

  • click on "Import JAR/FXML file" in scene builder
  • select JFoenix jar file
  • choose the components to import into scene builder

Rippler

JFXRippler provides the material design ripple effect that can be used by other controls.

Label label = new Label("TEST");
label.setStyle("-fx-background-color:WHITE;-fx-padding:20");
JFXRippler rippler = new JFXRippler(label);
                        

Default CSS Class jfx-rippler

Styling

-jfx-rippler-recenter
Boolean
-jfx-rippler-fill
Color
-jfx-rippler-radius
Number
-jfx-mask-type
CIRCLE    |     RECT

Button

JFoenix provides 2 main button types as described in material design. Flat buttons and raised buttons.
NOTE : FAB (Floating Action Button) can be created by rounding the edges of a raised button into circular shape.

JFXButton jfoenixButton = new JFXButton("JFoenix Button");
JFXButton button = new JFXButton("Raised Button".toUpperCase());
button.getStyleClass().add("button-raised");
                        
.button-raised{
    -fx-padding: 0.7em 0.57em;
    -fx-font-size: 14px;
    -jfx-button-type: RAISED;
    -fx-background-color: rgb(77,102,204);
    -fx-pref-width: 200;
    -fx-text-fill: WHITE;
}
                        

Default CSS Class jfx-button

Styling

-jfx-button-type
FLAT (default)    |     RAISED

Check Box

JFoenix provides a check box with the same functionality as java check box, however with an enhanced animation and ripple effect.

JFXCheckBox checkBox = new JFXCheckBox("JFX CheckBox");
checkBox.getStyleClass().add("custom-jfx-check-box");
                        
.custom-jfx-check-box{
    -jfx-checked-color: RED;
    -jfx-unchecked-color: BLACK;
}
                        

Default CSS Class jfx-check-box

Styling

-jfx-checked-color
Color
-jfx-unchecked-color
Color


Combo Box

JFoenix provides a combo box with the same functionality as java combo box, however with an enhanced material design and ripple effect on the selection list.

JFXComboBox<Label> jfxCombo = new JFXComboBox<Label>();

jfxCombo.getItems().add(new Label("Java 1.8"));
jfxCombo.getItems().add(new Label("Java 1.7"));
jfxCombo.getItems().add(new Label("Java 1.6"));
jfxCombo.getItems().add(new Label("Java 1.5"));

jfxCombo.setPromptText("Select Java Version");
                        

Default CSS Class jfx-combo-box

Styling

-jfx-focus-color
Color
-jfx-unfocus-color
Color
-jfx-label-float
Boolean

Hamburger

JFoenix includes the famous hamburger icon component, and provides a sample four types of transofrmation that can be applied to change its shape.

JFXHamburger h1 = new JFXHamburger();
HamburgerSlideCloseTransition burgerTask = new HamburgerSlideCloseTransition(h1);
burgerTask.setRate(-1);
h1.addEventHandler(MouseEvent.MOUSE_PRESSED, (e)->{
	burgerTask.setRate(burgerTask.getRate()*-1);
	burgerTask.play();
});
                    
.jfx-hamburger-icon{
	-fx-spacing: 5;
	-fx-cursor: hand;
}
.jfx-hamburger-icon StackPane{
	-fx-pref-width: 40px;
	-fx-pref-height: 7px;
	-fx-background-color : #D63333;
	-fx-background-radius : 5px;
}

Default CSS Class jfx-hamburger

Available Transitions

Basic Close
Slide Close
Back Arrow
Next Arrow

Input Fields

JFoenix provides material design look and feel input fields(text field, password field, text area).

JFXTextField field = new JFXTextField();
field.setLabelFloat(true);
field.setPromptText("Floating prompt");

JFXTextField validationField = new JFXTextField();
validationField.setPromptText("With Validation..");
RequiredFieldValidator validator = new RequiredFieldValidator();
validator.setMessage("Input Required");
validator.setAwsomeIcon(new Icon(AwesomeIcon.WARNING,"2em",";","error"));
validationField.getValidators().add(validator);
validationField.focusedProperty().addListener((o,oldVal,newVal)->{
    if(!newVal) validationField.validate();
});
                        

Default CSS Class jfx-text-field, jfx-password-field, jfx-text-area

Styling

-jfx-focus-color
Color
-jfx-unfocus-color
Color
-jfx-label-float
Boolean
-jfx-disable-animation
Boolean

Progress Bar

JFoenix provides an enhanced progress bar design according to material design with the same functionality of java progress bar.

JFXProgressBar jfxBar = new JFXProgressBar();
jfxBar.setPrefWidth(500);
JFXProgressBar jfxBarInf = new JFXProgressBar();
jfxBarInf.setPrefWidth(500);
jfxBarInf.setProgress(-1.0f);
Timeline timeline = new Timeline(
    new KeyFrame(Duration.ZERO, new KeyValue(bar.progressProperty(), 0), new KeyValue(jfxBar.progressProperty(), 0)),
    new KeyFrame(Duration.seconds(2), new KeyValue(bar.progressProperty(), 1), new KeyValue(jfxBar.progressProperty(), 1)));
timeline.setCycleCount(Timeline.INDEFINITE);
timeline.play();

Default CSS Class jfx-progress-bar

Radio Button

JFoenix improves the design of java radio button by reimplementing its design according to google material design.

final ToggleGroup group = new ToggleGroup();
                    
JFXRadioButton javaRadio = new JFXRadioButton("JavaFX");
javaRadio.setPadding(new Insets(10));
javaRadio.setToggleGroup(group);
JFXRadioButton jfxRadio = new JFXRadioButton("JFoenix");
jfxRadio.setPadding(new Insets(10));
jfxRadio.setToggleGroup(group);

Default CSS Class jfx-radio-button

Styling

-jfx-selected-color
Color
-jfx-unselected-color
Color

Slider

JFoenix enhances java slider design according to google material design ( adds a bubble to show the current percentage of the slider ).

JFXSlider hor_left = new JFXSlider();
hor_left.setMinWidth(500);
JFXSlider hor_right = new JFXSlider();
hor_left.setMinWidth(500);
hor_left.setIndicatorPosition(IndicatorPosition.RIGHT);
JFXSlider ver_left = new JFXSlider();
ver_left.setMinHeight(500);
ver_left.setOrientation(Orientation.VERTICAL);
JFXSlider ver_right = new JFXSlider();
ver_right.setMinHeight(500);
ver_right.setOrientation(Orientation.VERTICAL);
ver_right.setIndicatorPosition(IndicatorPosition.RIGHT);

Default CSS Class jfx-slider

Styling

-jfx-indicator-position
LEFT    |     RIGHT

Spinner

JFoenix introduces spinner that can be used to show work in progress. The spinner design is implemented according to google material design.

JFXSpinner spinner = new JFXSpinner();

Default CSS Class jfx-spinner

Styling

-jfx-radius
Number
-jfx-starting-angle
Number

Tab Pane

JFoenix improves the design of java tab pane. It changes its design according to google material design, and add an animation when switching between tabs.

JFXTabPane tabPane = new JFXTabPane();
tabPane.setPrefSize(300, 200);
Tab tab = new Tab();
tab.setText("Tab 1");
tab.setContent(new Label("Content"));
tabPane.getTabs().add(tab);

Default CSS Class jfx-tab-pane

Toggle Button

JFoenix changes the design of java toggle button according to material design. It also introduces the component toggle node, that can toggle On/Off any node set as its graphic.

JFXToggleButton toggleButton = new JFXToggleButton();
		
JFXToggleNode node = new JFXToggleNode();		
Icon value = new Icon("HEART");
value.setPadding(new Insets(10));
node.setGraphic(value);

Default CSS Class jfx-toggle-button, jfx-toggle-node

Styling

-jfx-toggle-color
Color
-jfx-untoggle-color
Color
-jfx-toggle-line-color
Color
-jfx-untoggle-line-color
Color

List View

JFoenix enhances java list view regarding its design and functionality. It adds ripple effect to each item, allows Expand/collapse operations on the list items, support a 2 level list view.

JFXListView<Label> list = new JFXListView<Label>();
for(int i = 0 ; i < 4 ; i++) list.getItems().add(new Label("Item " + i));
list.getStyleClass().add("mylistview");

                        
.mylistview .scroll-bar:horizontal .track,
.mylistview .scroll-bar:vertical .track{
	-fx-background-color:transparent;
	-fx-border-color:transparent;
	-fx-background-radius: 0em;
	-fx-border-radius:2em;
}

.mylistview .scroll-bar:horizontal .increment-button ,
.mylistview .scroll-bar:horizontal .decrement-button {
    -fx-background-color:transparent;
	-fx-background-radius: 0em;
	-fx-padding:0 0 10 0;
}

.mylistview .scroll-bar:vertical .increment-button ,
.mylistview .scroll-bar:vertical .decrement-button {
    -fx-background-color:transparent;
	-fx-background-radius: 0em;
	-fx-padding:0 10 0 0;
}
.mylistview  .scroll-bar .increment-arrow,
.mylistview  .scroll-bar .decrement-arrow{
	-fx-shape:" ";
	-fx-padding:0;
}

.mylistview .scroll-bar:horizontal .thumb,
.mylistview .scroll-bar:vertical .thumb {
    -fx-background-color:derive(black,90%);
	-fx-background-insets: 2, 0, 0;
	-fx-background-radius: 2em;
}

                        

Default CSS Class jfx-list-view

Styling

-jfx-cell-horizontal-margin
Number
-jfx-cell-vertical-margin
Number
-jfx-vertical-gap
Number
-jfx-expanded
Boolean

Tree Table View

JFoenix enhances java tree table view regarding its design and functionality. It adds editing, filtering and grouping capabilities on the table items.

			JFXTreeTableColumn<User, String> deptColumn = new JFXTreeTableColumn<>("Department");
			deptColumn.setPrefWidth(150);
			deptColumn.setCellValueFactory((TreeTableColumn.CellDataFeatures<User, String> param) ->{
				if(deptColumn.validateValue(param)) return param.getValue().getValue().department;
				else return deptColumn.getComputedValue(param);
			});

			JFXTreeTableColumn<User, String> empColumn = new JFXTreeTableColumn<>("Employee");
			empColumn.setPrefWidth(150);
			empColumn.setCellValueFactory((TreeTableColumn.CellDataFeatures<User, String> param) ->{
				if(empColumn.validateValue(param)) return param.getValue().getValue().userName;
				else return empColumn.getComputedValue(param);
			});

			JFXTreeTableColumn<User, String> ageColumn = new JFXTreeTableColumn<>("Age");
			ageColumn.setPrefWidth(150);
			ageColumn.setCellValueFactory((TreeTableColumn.CellDataFeatures<User, String> param) ->{
				if(ageColumn.validateValue(param)) return param.getValue().getValue().age;
				else return ageColumn.getComputedValue(param);
			});


			ageColumn.setCellFactory((TreeTableColumn<User, String> param) -> new GenericEditableTreeTableCell,
                            String>(new TextFieldEditorBuilder()));
			ageColumn.setOnEditCommit((CellEditEvent<User, String> t)->{
				((User) t.getTreeTableView().getTreeItem(t.getTreeTablePosition().getRow()).getValue()).age
                            .set(t.getNewValue());
			});

			empColumn.setCellFactory((TreeTableColumn<User, String> param) -> new GenericEditableTreeTableCell,
                            String>(new TextFieldEditorBuilder()));
			empColumn.setOnEditCommit((CellEditEvent<User, String> t)->{
				((User) t.getTreeTableView().getTreeItem(t.getTreeTablePosition().getRow()).getValue())
                            .userName.set(t.getNewValue());
			});

			deptColumn.setCellFactory((TreeTableColumn, String> param) ->
                            new GenericEditableTreeTableCell<User, String>(new TextFieldEditorBuilder()));
			deptColumn.setOnEditCommit((CellEditEvent<User, String> t)->{
				((User) t.getTreeTableView().getTreeItem(t.getTreeTablePosition().getRow()).getValue()).department.
                            set(t.getNewValue());
			});


			// data
			ObservableList<User> users = FXCollections.observableArrayList();
			users.add(new User("Computer Department", "23","CD 1"));
			users.add(new User("Sales Department", "22","Employee 1"));
			users.add(new User("Sales Department", "22","Employee 2"));
			users.add(new User("Sales Department", "25","Employee 4"));
			users.add(new User("Sales Department", "25","Employee 5"));
			users.add(new User("IT Department", "42","ID 2"));
			users.add(new User("HR Department", "22","HR 1"));
			users.add(new User("HR Department", "22","HR 2"));

			for(int i = 0 ; i< 40000; i++){
				users.add(new User("HR Department", i%10+"","HR 2" + i));
			}
			for(int i = 0 ; i< 40000; i++){
				users.add(new User("Computer Department", i%20+"","CD 2" + i));
			}

			for(int i = 0 ; i< 40000; i++){
				users.add(new User("IT Department", i%5+"","HR 2" + i));
			}

			// build tree
			final TreeItem<User> root = new RecursiveTreeItem<User>(users, RecursiveTreeObject::getChildren);

			JFXTreeTableView<User> treeView = new JFXTreeTableView<User>(root, users);
			treeView.setShowRoot(false);
			treeView.setEditable(true);
			treeView.getColumns().setAll(deptColumn, ageColumn, empColumn);

			JFXTextField filterField = new JFXTextField();
			filterField.textProperty().addListener((o,oldVal,newVal)->{
				treeView.setPredicate(user -> user.getValue().age.get().contains(newVal)
                            || user.getValue().department.get().contains(newVal)
                            || user.getValue().userName.get().contains(newVal));
			});

			Label size = new Label();
			size.textProperty().bind(Bindings.createStringBinding(()->treeView.getCurrentItemsCount()+"",
                            treeView.currentItemsCountProperty()));


                        

class User extends RecursiveTreeObject<User>{
    StringProperty userName;
    StringProperty age;
    StringProperty department;

    public User(String department, String age, String userName) {
        this.department = new SimpleStringProperty(department) ;
        this.userName = new SimpleStringProperty(userName);
        this.age = new SimpleStringProperty(age);
    }
}

                        

Pickers

JFoenix provides material design pickers for date/time and color.

JFXDatePicker blueDatePicker = new JFXDatePicker();
blueDatePicker.setDefaultColor(Color.valueOf("#3f51b5"));
blueDatePicker.setOverLay(true);
blueDatePicker.setShowTime(true);

JFXColorPicker colorPicker = new JFXColorPicker();
                        

Default CSS Class jfx-date-picker, jfx-color-picker

Styling

-jfx-default-color
Color
-jfx-overlay
Boolean

Dialog

JFoenix provides a material design dialogs implementation with a several transitions.

JFXDialog dialog = new JFXDialog();
dialog.setContent(new Label("Content"));
button.setOnAction((action)->dialog.show(rootStackPane));
                        

Default CSS Class jfx-dialog

Styling

-jfx-dialog-transition
CENTER | TOP | RIGHT | BOTTOM | LEFT

Drawer

JFoenix provides a drawer implementation to JavaFX, the drawer can be drawn from different sides.

JFXDrawer leftDrawer = new JFXDrawer();
StackPane leftDrawerPane = new StackPane();
leftDrawerPane.getStyleClass().add("red-400");
leftDrawerPane.getChildren().add(new JFXButton("Left Content"));
leftDrawer.setSidePane(leftDrawerPane);
leftDrawer.setDefaultDrawerSize(150);
leftDrawer.setOverLayVisible(false);
leftDrawer.setResizableOnDrag(true);
                        

Default CSS Class jfx-drawer

Decorator

JFoenix provides a material design window decorator instead of the default operating system decorator.

JFXDecorator decorator = new JFXDecorator(stage, content);
decorator.setCustomMaximize(true);
Scene scene = new Scene(decorator, 800, 850);

                        

Default CSS Class jfx-decorator

Masonry Pane

JFoenix provides a Masonry pane implementation with two layouts (Masonry | Bin packing).

JFXMasonryPane masonryPane = new JFXMasonryPane();
                        

Badge

JFoenix provides a badge control that can be added on other nodes on the scene.

JFXBadge badge = JFXBadge(node);
                        

SnackBar

JFoenix provides a snack bar implementation that can be used to visualize notifications.

JFXSnackbar bar = new JFXSnackbar(pane);
bar.enqueue(new SnackbarEvent("Notification Msg"))
                        
 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS

   APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "[]"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright [yyyy] [name of copyright owner]

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.