Here you can find the source of combine(String style1, String style2)
Parameter | Description |
---|---|
style1 | first style |
style2 | second style |
public static String combine(String style1, String style2)
//package com.java2s; public class Main { /** //from ww w . j a va2s . co m * Combines multiple styles * @param style1 first style * @param style2 second style * @return combination of given styles */ public static String combine(String style1, String style2) { return style1 + "," + style2; } }