From 8d6cf7a147acde4e4a4f7600af25ed614b07f90d Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 5 Aug 2014 11:08:06 +0200 Subject: java: remove dead methods Change-Id: I9f2e705fd603a7c8832c0f0772bee9f395380a0d --- forms/qa/integration/forms/CellBinding.java | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'forms') diff --git a/forms/qa/integration/forms/CellBinding.java b/forms/qa/integration/forms/CellBinding.java index 92060711130a..0919051ddb25 100644 --- a/forms/qa/integration/forms/CellBinding.java +++ b/forms/qa/integration/forms/CellBinding.java @@ -499,22 +499,6 @@ public class CellBinding extends complexlib.ComplexTestCase bindToCell( _controlModel, _column, _row, "com.sun.star.table.CellValueBinding" ); } - /* ------------------------------------------------------------------ */ - /** sets the given cell range as list entry source for the given control - */ - private void setListSource( XPropertySet _listSink, short _sourceCol, short _rowStart, short _rowEnd ) throws com.sun.star.uno.Exception - { - CellRangeAddress listSourceAddress = new CellRangeAddress( (short)0, _sourceCol, _rowStart, _sourceCol, _rowEnd ); - NamedValue addressParameter = new NamedValue( "CellRange", listSourceAddress ); - - XListEntrySource listSource = UnoRuntime.queryInterface( XListEntrySource.class, - m_document.createInstanceWithArguments( "com.sun.star.table.CellRangeListSource", new NamedValue[]{ addressParameter } ) - ); - XListEntrySink listSink = UnoRuntime.queryInterface( XListEntrySink.class, - _listSink ); - listSink.setListEntrySource( listSource ); - } - /* ------------------------------------------------------------------ */ /** simulates a user action to check a radio button */ -- cgit