Skip to content

Commit

Permalink
Fix encoding of files
Browse files Browse the repository at this point in the history
  • Loading branch information
albfernandez committed Mar 19, 2024
1 parent 3f31a73 commit 10b1002
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,25 @@ public abstract class AbstractOrderingComponent extends AbstractSelectManyCompon
/**
* The text to display in the move-to-top button
*/
@Attribute(defaultValue = " First")
@Attribute(defaultValue = "\\u21D1 First")
public abstract String getUpTopText();

/**
* The text to display in the move-up button
*/
@Attribute(defaultValue = " Up")
@Attribute(defaultValue = "\\u2191 Up")
public abstract String getUpText();

/**
* The text to display in the move-down button
*/
@Attribute(defaultValue = " Down")
@Attribute(defaultValue = "\\u2193 Down")
public abstract String getDownText();

/**
* The text to display in the move-to-bottom button
*/
@Attribute(defaultValue = " Last")
@Attribute(defaultValue = "\\u21D3 Last")
public abstract String getDownBottomText();

protected boolean compareValues(Object previous, Object value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public interface AxisAttributes {
String getMax();

/**
* Its the fraction of margin that the scaling algorithm will add to avoid
* It's the fraction of margin that the scaling algorithm will add to avoid
* that the outermost points ends up on the grid border.
*/
@Attribute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
*/
public interface CalendarDataModelItem {
/**
* @return true if date is selectable on calendar, default implementation return true
* @return true if date is selectable on calendar, default implementation return true
**/
boolean isEnabled();

/**
* @return String that will be appended to style class for that date span. For example it may be relevant holyday� � that
* mean class will be like rich-cal-day relevant holyday. Default implementation return empty string.
* @return String that will be appended to style class for that date span. For example it may be relevant holyday that
* mean class will be like rich-cal-day relevant holyday. Default implementation return empty string.
* */
String getStyleClass();

Expand All @@ -49,7 +49,7 @@ public interface CalendarDataModelItem {
boolean hasToolTip();

/**
* @return tool tip data that will be used in batch tooltip loading mode.
* @return tool tip data that will be used in batch tooltip loading mode.
**/
Object getToolTip();

Expand Down

0 comments on commit 10b1002

Please sign in to comment.