Skip to content

Commit

Permalink
清除版权注释信息
Browse files Browse the repository at this point in the history
  • Loading branch information
icuxika committed Jan 16, 2021
1 parent 939227e commit dfa9672
Show file tree
Hide file tree
Showing 37 changed files with 0 additions and 314 deletions.
5 changes: 0 additions & 5 deletions src/main/java/com/jfoenix/adapter/ReflectionHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;

/**
* This class is for breaking the module system of Java 9.
*
* @author huang
*/
public class ReflectionHelper {

// private static Unsafe unsafe = null;
Expand Down
19 changes: 0 additions & 19 deletions src/main/java/com/jfoenix/animation/JFXNodesAnimation.java
Original file line number Diff line number Diff line change
@@ -1,22 +1,3 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/

package com.jfoenix.animation;

import javafx.animation.Animation;
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/control/JFXComboBox.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@
import java.util.Collections;
import java.util.List;

/**
* JFXComboBox is the material design implementation of a combobox.
*
* @author Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public class JFXComboBox<T> extends ComboBox<T> implements IFXLabelFloatControl {

/**
Expand Down
10 changes: 0 additions & 10 deletions src/main/java/com/jfoenix/control/JFXDecorator.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,6 @@
import java.util.ArrayList;
import java.util.List;


/**
* Window Decorator allow to resize/move its content Note: the default close button will call stage.close() which will
* only close the current stage. it will not close the java application, however it can be customized by calling {@link
* #setOnCloseButtonAction(Runnable)}
*
* @author Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public class JFXDecorator extends VBox {

private Stage primaryStage;
Expand Down
14 changes: 0 additions & 14 deletions src/main/java/com/jfoenix/control/JFXListCell.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,6 @@

import java.util.Set;

/**
* material design implementation of ListCell
* <p>
* By default JFXListCell will try to create a graphic node for the cell,
* to override it you need to set graphic to null in {@link #updateItem(Object, boolean)} method.
* <p>
* NOTE: passive nodes (Labels and Shapes) will be set to mouse transparent in order to
* show the ripple effect upon clicking , to change this behavior you can override the
* method {{@link #makeChildrenTransparent()}
*
* @author Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public class JFXListCell<T> extends ListCell<T> {

protected JFXRipple cellRipple = new JFXRipple(this) {
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/control/JFXListView.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@

import java.util.*;

/**
* Material design implementation of List View
*
* @author Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public class JFXListView<T> extends ListView<T> {

/**
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/control/JFXPasswordField.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@
import java.util.Collections;
import java.util.List;

/**
* JFXPasswordField is the material design implementation of a password Field.
*
* @author Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public class JFXPasswordField extends PasswordField implements IFXLabelFloatControl {

/**
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/control/JFXProgressBar.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,6 @@
import javafx.scene.control.ProgressBar;
import javafx.scene.control.Skin;

/**
* JFXProgressBar is the material design implementation of a progress bar.
*
* @author Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public class JFXProgressBar extends ProgressBar {
/**
* Initialize the style class to 'jfx-progress-bar'.
Expand Down
26 changes: 0 additions & 26 deletions src/main/java/com/jfoenix/control/JFXSnackbar.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,32 +18,6 @@
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicBoolean;

/**
* "Snackbars provide brief messages about app processes at the bottom of the screen"
* (<a href="https://material.io/design/components/snackbars.html#">Material Design Guidelines</a>).
* <p>
* To show a snackbar you need to
* <ol>
* <li>Have a {@link Pane} (snackbarContainer) to show the snackbar on top of. Register it in {@link
* #JFXSnackbar(Pane) the JFXSnackbar constructor} or using the {@link #registerSnackbarContainer(Pane)} method.</li>
* <li>Have or create a {@link JFXSnackbar}.<ul><li>Having one snackbar where you pass all your {@link
* SnackbarEvent SnackbarEvents} will ensure that the {@link JFXSnackbar#enqueue(SnackbarEvent) enqueue
* method} works as intended.</li></ul>
* </li>
* <li>Have something to show in the snackbar. A {@link JFXSnackbarLayout} is nice and pretty,
* but any arbitrary {@link Node} will do.</li>
* <li>Create a {@link SnackbarEvent SnackbarEvent} specifying the contents and the
* duration.</li>
* </ol>
* <p>
* Finally, with all those things prepared, show your snackbar using
* {@link JFXSnackbar#enqueue(SnackbarEvent) snackbar.enqueue(snackbarEvent);}.
* <p>
* It's most convenient to create functions to do most of this (creating the layout and event) with the default
* settings; that way all you need to do to show a snackbar is specify the message or just the message and the duration.
*
* @see <a href="https://material.io/design/components/snackbars.html#"> The Material Design Snackbar</a>
*/
public class JFXSnackbar extends Group {

private static final String DEFAULT_STYLE_CLASS = "jfx-snackbar";
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/control/JFXSnackbarLayout.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.StackPane;

/**
* JFXSnackbarLayout default layout for snackbar content
*
* @author Shadi Shaheen
* @version 1.0
* @since 2018-11-16
*/
public class JFXSnackbarLayout extends BorderPane {

private Label toast;
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/control/JFXSpinner.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@
import java.util.Collections;
import java.util.List;

/**
* JFXSpinner is the material design implementation of a loading spinner.
*
* @author Bashir Elias & Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public class JFXSpinner extends ProgressIndicator {

public static final double INDETERMINATE_PROGRESS = -1;
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/control/JFXSpinnerSkin.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@
import javafx.scene.text.Text;
import javafx.util.Duration;

/**
* JFXSpinner material design skin
*
* @author Shadi Shaheen & Gerard Moubarak
* @version 1.0
* @since 2017-09-25
*/
public class JFXSpinnerSkin extends SkinBase<JFXSpinner> {

private JFXSpinner control;
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/control/JFXTextField.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@
import java.util.Collections;
import java.util.List;

/**
* JFXTextField is the material design implementation of a text Field.
*
* @author Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public class JFXTextField extends TextField implements IFXLabelFloatControl {

/**
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/control/JFXTooltip.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,6 @@
import javafx.stage.WindowEvent;
import javafx.util.Duration;

/**
* JFXTooltip is the material design implementation of the tooltip.
*
* @author Shadi Shaheen
* @version 1.0
* @since 3/29/2019
*/
public class JFXTooltip extends Tooltip {

/**
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/control/ValidationControl.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,6 @@
import javafx.collections.ObservableList;
import javafx.scene.control.Control;

/**
* this class used as validation model wrapper for all {@link IFXValidatableControl}
*
* @author Shadi Shaheen
* @version 1.0
* @since 2018-07-19
*/
class ValidationControl implements IFXValidatableControl {

private ReadOnlyObjectWrapper<ValidatorBase> activeValidator = new ReadOnlyObjectWrapper<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@
import javafx.css.StyleableObjectProperty;
import javafx.scene.paint.Paint;

/**
* this class is created for internal use only, to remove duplication between text input controls
* skins
* <p>
* Created by sshahine on 7/14/2017.
*/
public interface IFXLabelFloatControl extends IFXValidatableControl, IFXStaticControl {

StyleableBooleanProperty labelFloatProperty();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,6 @@
import javafx.css.StyleConverter;
import javafx.scene.text.Font;

/**
* Converts the CSS for -fx-dialog-transition items into DialogTransition.
* it's used in JFXDialog.
*
* @author Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public class DialogTransitionConverter extends StyleConverter<String, JFXDialog.DialogTransition> {
// lazy, thread-safe instatiation
private static class Holder {
Expand Down
8 changes: 0 additions & 8 deletions src/main/java/com/jfoenix/converter/base/NodeConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@

import javafx.scene.Node;

/**
* Converter defines conversion behavior between Nodes and Objects.
* The type of Objects are defined by the subclasses of Converter.
*
* @author Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public abstract class NodeConverter<T> {
/**
* Converts the object provided into its node form.
Expand Down
8 changes: 0 additions & 8 deletions src/main/java/com/jfoenix/effect/JFXDepthManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,6 @@
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;

/**
* it will create a shadow effect for a given node and a specified depth level.
* depth levels are {0,1,2,3,4,5}
*
* @author Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public class JFXDepthManager {

private static DropShadow[] depth = new DropShadow[]{
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/jfoenix/skin/JFXCheckBoxSkin.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import javafx.scene.paint.Paint;
import javafx.util.Duration;


public class JFXCheckBoxSkin extends CheckBoxSkin {

private final StackPane box = new StackPane();
Expand Down
8 changes: 0 additions & 8 deletions src/main/java/com/jfoenix/skin/JFXComboBoxListViewSkin.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,6 @@
import java.util.Collections;
import java.util.List;

/**
* <h1>Material Design ComboBox Skin</h1>
*
* @author Shadi Shaheen
* @version 2.0
* @since 2017-01-25
*/

public class JFXComboBoxListViewSkin<T> extends ComboBoxListViewSkin<T> {

/***************************************************************************
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/skin/JFXListViewSkin.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,6 @@
import javafx.scene.control.skin.VirtualFlow;
import javafx.scene.layout.Region;

/**
* <h1>Material Design ListView Skin</h1>
*
* @author Shadi Shaheen
* @version 1.0
* @since 2016-03-09
*/
public class JFXListViewSkin<T> extends ListViewSkin<T> {

private VirtualFlow<ListCell<T>> flow;
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/skin/JFXProgressBarSkin.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,6 @@
import javafx.scene.paint.Color;
import javafx.util.Duration;

/**
* <h1>Material Design ProgressBar Skin</h1>
*
* @author Shadi Shaheen
* @version 2.0
* @since 2017-10-06
*/
public class JFXProgressBarSkin extends ProgressIndicatorSkin {

private StackPane track;
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/com/jfoenix/skin/JFXTextFieldSkin.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,6 @@

import java.lang.reflect.Field;

/**
* <h1>Material Design Text input control Skin, used for both JFXTextField/JFXPasswordField</h1>
*
* @author Shadi Shaheen
* @version 2.0
* @since 2017-01-25
*/
public class JFXTextFieldSkin<T extends TextField & IFXLabelFloatControl> extends TextFieldSkin {

private boolean invalid = true;
Expand Down
8 changes: 0 additions & 8 deletions src/main/java/com/jfoenix/skin/PromptLinesWrapper.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.jfoenix.skin;


import com.jfoenix.control.base.IFXLabelFloatControl;
import com.jfoenix.transition.JFXAnimationTimer;
import com.jfoenix.transition.JFXKeyFrame;
Expand All @@ -26,13 +25,6 @@

import java.util.function.Supplier;

/**
* this class used to create label-float/focus-lines for all {@link IFXLabelFloatControl}
*
* @author Shadi Shaheen
* @version 1.0
* @since 2018-07-19
*/
public class PromptLinesWrapper<T extends Control & IFXLabelFloatControl> {

private final Supplier<Text> promptTextSupplier;
Expand Down
Loading

0 comments on commit dfa9672

Please sign in to comment.