/******************************************************************************* * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * *******************************************************************************/ package com.liferay.ide.project.core.model.internal; import com.liferay.ide.project.core.model.ParentSDKProjectImportOp; import com.liferay.ide.sdk.core.SDK; import com.liferay.ide.sdk.core.SDKUtil; import org.eclipse.sapphire.DerivedValueService; import org.eclipse.sapphire.FilteredListener; import org.eclipse.sapphire.PropertyContentEvent; import org.eclipse.sapphire.modeling.Path; import org.eclipse.sapphire.platform.PathBridge; /** * @author Simon Jiang */ public class SDKImportDerivedValueService extends DerivedValueService { private FilteredListener<PropertyContentEvent> listener; @Override protected void initDerivedValueService() { super.initDerivedValueService(); this.listener = new FilteredListener<PropertyContentEvent>() { @Override protected void handleTypedEvent( PropertyContentEvent event ) { refresh(); } }; op().property( ParentSDKProjectImportOp.PROP_SDK_LOCATION ).attach( this.listener ); } @Override protected String compute() { String retVal = null; if( op().getSdkLocation() != null ) { if( op().getSdkLocation().content() != null && !op().getSdkLocation().content().isEmpty() ) { final Path sdkPath = op().getSdkLocation().content(); SDK sdk = SDKUtil.createSDKFromLocation( PathBridge.create( sdkPath ) ); if ( sdk != null ) { retVal = sdk.getVersion(); } } } return retVal; } private ParentSDKProjectImportOp op() { return context( ParentSDKProjectImportOp.class ); } @Override public void dispose() { if( op() != null ) { op().property( ParentSDKProjectImportOp.PROP_SDK_LOCATION ).detach( this.listener ); } super.dispose(); } }