view org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/custom/SashFormData.d @ 104:88652073d1c2

More work on icu
author Frank Benoit <benoit@tionex.de>
date Sat, 02 May 2009 11:27:24 +0200
parents c01d033c633a
children 536e43f63c81
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2000, 2005 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
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module org.eclipse.swt.custom.SashFormData;

import java.lang.all;

version(Tango){
    static import tango.text.Util;
    import tango.util.Convert;
} else { // Phobos
    import std.conv;
}

class SashFormData {

    long weight;

String getName () {
    String str = this.classinfo.name;
    int index = str.lastIndexOf( '.' );
    if (index is -1 ) return str;
    return str[ index + 1 .. $ ];
}

/**
 * Returns a string containing a concise, human-readable
 * description of the receiver.
 *
 * @return a string representation of the event
 */
public override String toString () {
    return getName()~" {weight="~to!(String)(weight)~"}"; //$NON-NLS-2$
}
}