Sha256: 54dc9dbe6757b14e98b1864bb9c42e37332c56bd561e9f8cb472fc23a838a303

Contents?: true

Size: 309 Bytes

Versions: 2

Compression:

Stored size: 309 Bytes

Contents

package com.rhomobile.rhodes.extmanager;

class RhoExtDataImpl implements IRhoExtData {
	
	private int mTabIndex;
	
	public RhoExtDataImpl(int tabIndex) {
		mTabIndex = tabIndex;
	}
	
	public int getTabIndex() {
		return mTabIndex;
	}
	
	public void setTabIndex(int tab_index) {
		mTabIndex = tab_index;
	}
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rhodes-3.3.3.beta.3 platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/RhoExtDataImpl.java
rhodes-3.3.3.beta.2 platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/RhoExtDataImpl.java