Skip to content
Snippets Groups Projects
Commit 26781b65 authored by izabel's avatar izabel
Browse files

minor: unify TODO formats

SVN: 15106
parent 8db230a4
No related branches found
No related tags found
No related merge requests found
...@@ -42,15 +42,16 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.dto.SessionContext; ...@@ -42,15 +42,16 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.dto.SessionContext;
* This class uses a variant of a trick described in the GWT discussion forum to support autofill. * This class uses a variant of a trick described in the GWT discussion forum to support autofill.
* Browsers do not support autofill on input fields that are generated on the client by javascript, * Browsers do not support autofill on input fields that are generated on the client by javascript,
* so it is necessary for the page to statically contain the input fields we want to autofill. These * so it is necessary for the page to statically contain the input fields we want to autofill. These
* fields are unhidden and used on the login page. TODO This implementation currently supports * fields are unhidden and used on the login page.
* Firefox, but not Safari or Chrome. To support Safari, we cannot use javascript in the action,
* instead we need to have the login post data to a server.
* *
* @see <a href * @see <a href
* ="http://groups.google.com/group/Google-Web-Toolkit/browse%5Fthread/thread/2b2ce0b6aaa82461">GWT * ="http://groups.google.com/group/Google-Web-Toolkit/browse%5Fthread/thread/2b2ce0b6aaa82461">GWT
* Discussion Forum</a> * Discussion Forum</a>
* @author Chandrasekhar Ramakrishnan * @author Chandrasekhar Ramakrishnan
*/ */
// TODO 2010-03-10, CR: This implementation currently supports Firefox, but not Safari or Chrome. To
// support Safari, we cannot use javascript in the action, instead we need to have the login post
// data to a server.
public class LoginPanelAutofill extends VerticalPanel public class LoginPanelAutofill extends VerticalPanel
{ {
private final IViewContext<ICommonClientServiceAsync> viewContext; private final IViewContext<ICommonClientServiceAsync> viewContext;
......
...@@ -27,8 +27,8 @@ import ch.systemsx.cisd.openbis.generic.shared.basic.dto.IntegerTableCell; ...@@ -27,8 +27,8 @@ import ch.systemsx.cisd.openbis.generic.shared.basic.dto.IntegerTableCell;
public class ComparableCellValueHelper public class ComparableCellValueHelper
{ {
// TODO CR --This code should be a method on ISerializableComparable and implemented using // TODO 2010-03-10, CR: This code should be a method on ISerializableComparable and implemented
// polymorphism. // using polymorphism.
public static Comparable<?> unwrap(ISerializableComparable cellValue) public static Comparable<?> unwrap(ISerializableComparable cellValue)
{ {
if (cellValue instanceof DateTableCell) if (cellValue instanceof DateTableCell)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment