blob: ef52328ec6cf2eeb3c6332d51b7ac5b6e34df1d9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.cocoa;
public class NSMutableString extends NSString {
public NSMutableString() {
super();
}
public NSMutableString(long /*int*/ id) {
super(id);
}
public NSMutableString(id id) {
super(id);
}
public void appendString(NSString aString) {
OS.objc_msgSend(this.id, OS.sel_appendString_, aString != null ? aString.id : 0);
}
public void replaceCharactersInRange(NSRange range, NSString aString) {
OS.objc_msgSend(this.id, OS.sel_replaceCharactersInRange_withString_, range, aString != null ? aString.id : 0);
}
public void setString(NSString aString) {
OS.objc_msgSend(this.id, OS.sel_setString_, aString != null ? aString.id : 0);
}
public static NSString string() {
long /*int*/ result = OS.objc_msgSend(OS.class_NSMutableString, OS.sel_string);
return result != 0 ? new NSString(result) : null;
}
public static NSString stringWithCharacters(char[] characters, long /*int*/ length) {
long /*int*/ result = OS.objc_msgSend(OS.class_NSMutableString, OS.sel_stringWithCharacters_length_, characters, length);
return result != 0 ? new NSMutableString(result) : null;
}
public static NSString stringWithFormat(NSString format) {
long /*int*/ result = OS.objc_msgSend(OS.class_NSMutableString, OS.sel_stringWithFormat_, format != null ? format.id : 0);
return result != 0 ? new NSString(result) : null;
}
public static NSString stringWithUTF8String(long /*int*/ nullTerminatedCString) {
long /*int*/ result = OS.objc_msgSend(OS.class_NSMutableString, OS.sel_stringWithUTF8String_, nullTerminatedCString);
return result != 0 ? new NSString(result) : null;
}
}