project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/cpp/epoc/engine/model/makefile/ArgList.java
changeset 610 bfb3ab3f70f2
parent 0 fb279309251b
equal deleted inserted replaced
609:bf7dbec89c47 610:bfb3ab3f70f2
    36 	private String terminal;
    36 	private String terminal;
    37 
    37 
    38 	public ArgList(String text) {
    38 	public ArgList(String text) {
    39 		String trimmed = text.trim();
    39 		String trimmed = text.trim();
    40 		this.initial = text.substring(0, text.indexOf(trimmed));
    40 		this.initial = text.substring(0, text.indexOf(trimmed));
    41 		this.terminal = text.substring(text.length() - this.initial.length() - trimmed.length());
    41 		this.terminal = text.substring(text.length() - this.initial.length());
    42 		this.argv = splitArguments(trimmed);
    42 		this.argv = splitArguments(trimmed);
    43 		
    43 		
    44 	}
    44 	}
    45 	
    45 	
    46 	public ArgList(String initial, List<String> newArgs, String terminal) {
    46 	public ArgList(String initial, List<String> newArgs, String terminal) {