Skip to content

Commit

Permalink
Modify the way of adding tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfz2019 committed Oct 27, 2016
1 parent 0c29337 commit 26a1444
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/main/java/seedu/manager/model/tag/UniqueTagList.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@
import java.util.*;

/**
* @@author A0148042M
* A list of tags that enforces no nulls and uniqueness between its elements.
*
* Supports minimal set of list operations for the app's features.
*
* @see Tag#equals(Object)
* @see CollectionUtil#elementsAreUnique(Collection)
*
* @@author A0148042M
*/
public class UniqueTagList implements Iterable<Tag> {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/seedu/manager/ui/TagCard.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@

/**
* @@author A0148042M
* @author zhaodingfan
*
*/
public class TagCard extends UiPart{

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/view/TagListPanel.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<?import javafx.scene.control.ListView?>
<?import javafx.scene.layout.*?>
<?import java.net.URL?>
<!-- @@author A0148042M -->

<!-- @@author A0148042M -->
<VBox xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="seedu.manager.ui.TagListPanel" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<stylesheets>
<URL value="@DarkTheme.css" />
Expand Down

0 comments on commit 26a1444

Please sign in to comment.