summaryrefslogtreecommitdiff
path: root/systems/android/hktex/HKtex2/src/worker4math/hktex2/Textattributefile.java
blob: 01649b21d8cfb493f424fc2d4521884a35264919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// Latex Project Public Licence (lppl1.3) applies
// Originally written by Kwanleung Tse
// First Release : 1st July, 2014
// Last Update : 25th September, 2014
//
//

package worker4math.hktex2;


import java.util.ArrayList;

public class Textattributefile{
	ArrayList<String> attribute = new ArrayList<String>();	
	  
	public void textattributefile (){
			     
   attribute.add("underlinetext");
   attribute.add("strikethru");
   attribute.add("skew");
   attribute.add("alpha");
   attribute.add("shadow");
		
}}