code
stringlengths
3
1.18M
language
stringclasses
1 value
package com.googlecode.kanbanik.client.messaging.messages.user; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class LogoutEvent extends BaseMessage<Dtos.UserDto> { public LogoutEvent(Dtos.UserDto payload, Object source) { super(payload, source)...
Java
package com.googlecode.kanbanik.client.messaging.messages.user; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class UserEditedMessage extends BaseMessage<Dtos.UserDto> { public UserEditedMessage(Dtos.UserDto payload, Object source) { super(payl...
Java
package com.googlecode.kanbanik.client.messaging.messages.user; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class UserDeletedMessage extends BaseMessage<Dtos.UserDto> { public UserDeletedMessage(Dtos.UserDto payload, Object source) { super(pa...
Java
package com.googlecode.kanbanik.client.messaging.messages.user; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class UserAddedMessage extends BaseMessage<Dtos.UserDto> { public UserAddedMessage(Dtos.UserDto payload, Object source) { super(payloa...
Java
package com.googlecode.kanbanik.client.messaging.messages.modules; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class ModuleActivatedMessage extends BaseMessage<Class<?>> { public ModuleActivatedMessage(Class<?> payload, Object source) { super(payload, source); } }
Java
package com.googlecode.kanbanik.client.messaging.messages.modules; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class ModuleDeactivatedMessage extends BaseMessage<Class<?>> { public ModuleDeactivatedMessage(Class<?> payload, Object source) { super(payload, source); } }
Java
package com.googlecode.kanbanik.client.messaging.messages.workflowitem; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class WorkflowitemChangedMessage extends BaseMessage<Dtos.WorkflowitemDto> { public WorkflowitemChangedMessage(Dtos.Workflowitem...
Java
package com.googlecode.kanbanik.client.messaging.messages.task; import com.googlecode.kanbanik.client.messaging.BaseMessage; import static com.googlecode.kanbanik.client.api.Dtos.TaskDto; public class GetSelectedTasksRsponseMessage extends BaseMessage<TaskDto> { public GetSelectedTasksRsponseMessage(TaskDto payload...
Java
package com.googlecode.kanbanik.client.messaging.messages.task; import com.googlecode.kanbanik.client.messaging.BaseMessage; import static com.googlecode.kanbanik.client.api.Dtos.TaskDto; public class GetFirstTaskResponseMessage extends BaseMessage<TaskDto> { public GetFirstTaskResponseMessage(TaskDto payload, Obje...
Java
package com.googlecode.kanbanik.client.messaging.messages.task; import com.googlecode.kanbanik.client.messaging.BaseMessage; import com.googlecode.kanbanik.client.messaging.messages.task.ChangeTaskSelectionMessage.ChangeTaskSelectionParams; import static com.googlecode.kanbanik.client.api.Dtos.TaskDto; public class C...
Java
package com.googlecode.kanbanik.client.messaging.messages.task; import java.util.List; import com.googlecode.kanbanik.client.messaging.BaseMessage; import static com.googlecode.kanbanik.client.api.Dtos.TaskDto; public class DeleteTasksRequestMessage extends BaseMessage<List<TaskDto>> { public DeleteTasksRequestMes...
Java
package com.googlecode.kanbanik.client.messaging.messages.task; import com.googlecode.kanbanik.client.messaging.BaseMessage; import static com.googlecode.kanbanik.client.api.Dtos.TaskDto; public class TaskDeletedMessage extends BaseMessage<TaskDto> { public TaskDeletedMessage(TaskDto payload, Object source) { su...
Java
package com.googlecode.kanbanik.client.messaging.messages.task; import com.googlecode.kanbanik.client.messaging.BaseMessage; import static com.googlecode.kanbanik.client.api.Dtos.TaskDto; public class TaskEditedMessage extends BaseMessage<TaskDto> { public TaskEditedMessage(TaskDto payload, Object source) { supe...
Java
package com.googlecode.kanbanik.client.messaging.messages.task; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class GetFirstTaskRequestMessage extends BaseMessage<Dtos.WorkflowitemDto> { public GetFirstTaskRequestMessage(Dtos.WorkflowitemDto payl...
Java
package com.googlecode.kanbanik.client.messaging.messages.task; import com.googlecode.kanbanik.client.messaging.BaseMessage; import static com.googlecode.kanbanik.client.api.Dtos.TaskDto; public class TaskAddedMessage extends BaseMessage<TaskDto> { public TaskAddedMessage(TaskDto payload, Object source) { super(p...
Java
package com.googlecode.kanbanik.client.messaging.messages.task; import com.googlecode.kanbanik.client.messaging.BaseMessage; import static com.googlecode.kanbanik.client.api.Dtos.TaskDto; public class TaskChangedMessage extends BaseMessage<TaskDto> { public TaskChangedMessage(TaskDto payload, Object source) { sup...
Java
package com.googlecode.kanbanik.client.messaging.messages.task; import com.googlecode.kanbanik.client.messaging.BaseMessage; import static com.googlecode.kanbanik.client.api.Dtos.TaskDto; // just formal TaskDto argument - it is not actually used public class GetSelectedTasksRequestMessage extends BaseMessage<TaskDto>...
Java
package com.googlecode.kanbanik.client.messaging.messages.project; import com.googlecode.kanbanik.client.messaging.BaseMessage; import com.googlecode.kanbanik.client.api.Dtos.ProjectDto; public class ProjectChangedMessage extends BaseMessage<ProjectDto> { public ProjectChangedMessage(ProjectDto payload, Object sour...
Java
package com.googlecode.kanbanik.client.messaging.messages.project; import com.googlecode.kanbanik.client.messaging.BaseMessage; import com.googlecode.kanbanik.client.api.Dtos.ProjectDto; public class ProjectEditedMessage extends BaseMessage<ProjectDto> { public ProjectEditedMessage(ProjectDto payload, Object sourc...
Java
package com.googlecode.kanbanik.client.messaging.messages.project; import com.googlecode.kanbanik.client.messaging.BaseMessage; import com.googlecode.kanbanik.client.api.Dtos.ProjectDto; public class ProjectDeletedMessage extends BaseMessage<ProjectDto> { public ProjectDeletedMessage(ProjectDto payload, Object sour...
Java
package com.googlecode.kanbanik.client.messaging.messages.project; import com.googlecode.kanbanik.client.messaging.BaseMessage; import com.googlecode.kanbanik.client.api.Dtos.ProjectDto; public class ProjectAddedMessage extends BaseMessage<ProjectDto> { public ProjectAddedMessage(ProjectDto payload, Object source)...
Java
package com.googlecode.kanbanik.client.messaging.messages.board; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class BoardsRefreshRequestMessage extends BaseMessage<Dtos.BoardDto> { public BoardsRefreshRequestMessage(Dtos.BoardDto payload, Object...
Java
package com.googlecode.kanbanik.client.messaging.messages.board; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class BoardCreatedMessage extends BaseMessage<Dtos.BoardDto> { public BoardCreatedMessage(Dtos.BoardDto payload, Object source) { sup...
Java
package com.googlecode.kanbanik.client.messaging.messages.board; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class BoardRefreshedMessage extends BaseMessage<Dtos.BoardDto> { public BoardRefreshedMessage(Dtos.BoardDto payload, Object source) { ...
Java
package com.googlecode.kanbanik.client.messaging.messages.board; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class BoardDeletedMessage extends BaseMessage<Dtos.BoardDto> { public BoardDeletedMessage(Dtos.BoardDto payload, Object source) { sup...
Java
package com.googlecode.kanbanik.client.messaging.messages.board; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class BoardEditedMessage extends BaseMessage<Dtos.BoardDto> { public BoardEditedMessage(Dtos.BoardDto payload, Object source) { super...
Java
package com.googlecode.kanbanik.client.messaging.messages.board; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.messaging.BaseMessage; public class BoardChangedMessage extends BaseMessage<Dtos.BoardDto> { public BoardChangedMessage(Dtos.BoardDto payload, Object source) { sup...
Java
package com.googlecode.kanbanik.client.messaging; public class BaseMessage<P> implements Message<P>{ private P payload; private Object source; public BaseMessage(P payload, Object source) { super(); this.payload = payload; this.source = source; } public P getPayload() { return payload; } public...
Java
package com.googlecode.kanbanik.client.messaging; public interface MessageListener<P> { void messageArrived(Message<P> message); }
Java
package com.googlecode.kanbanik.client.managers; import com.googlecode.kanbanik.client.security.CurrentUser; import java.util.ArrayList; import java.util.List; import static com.googlecode.kanbanik.client.api.Dtos.ClassOfServiceDto; public class ClassOfServicesManager { private static final ClassOfServicesManager...
Java
package com.googlecode.kanbanik.client.managers; import com.google.gwt.event.dom.client.LoadEvent; import com.google.gwt.event.dom.client.LoadHandler; import com.google.gwt.user.client.ui.Image; public class PictureResizingLoadHandler implements LoadHandler { private Image picture; private int expectedHeight = 40;...
Java
package com.googlecode.kanbanik.client.managers; import com.google.gwt.dom.client.Style; import com.google.gwt.dom.client.Style.BorderStyle; import com.google.gwt.dom.client.Style.Unit; import com.google.gwt.user.client.ui.Image; import com.googlecode.kanbanik.client.KanbanikResources; import com.googlecode.kanbanik.c...
Java
package com.googlecode.kanbanik.client; import com.google.gwt.core.client.EntryPoint; public class KanbanikEntryPoint implements EntryPoint { public void onModuleLoad() { new KanbanikModuleManager().initialize(); } }
Java
package com.googlecode.kanbanik.client; import com.google.gwt.user.client.ui.RootPanel; import com.googlecode.kanbanik.client.api.DtoFactory; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.api.ServerCallCallback; import com.googlecode.kanbanik.client.api.ServerCaller; import com....
Java
package com.googlecode.kanbanik.client; import com.googlecode.kanbanik.client.modules.BoardsModule; import com.googlecode.kanbanik.client.modules.ConfigureWorkflowModule; import com.googlecode.kanbanik.client.modules.ControlPanelModule; import com.googlecode.kanbanik.client.modules.SecurityModule; public enum Modules...
Java
package com.googlecode.kanbanik.client; import com.google.gwt.resources.client.CssResource; public interface BoardStyle extends CssResource { String board(); }
Java
package com.googlecode.kanbanik.client; import com.google.gwt.user.client.ui.DialogBox; import com.google.gwt.user.client.ui.Image; public class KanbanikProgressBar { private static DialogBox dialog; static { dialog = new DialogBox(); dialog.setTitle("Communicating with server"); dialog.setText("Communica...
Java
package com.googlecode.kanbanik.client.security; import com.google.gwt.user.client.Cookies; import com.googlecode.kanbanik.client.api.DtoFactory; import com.googlecode.kanbanik.client.api.Dtos; import com.googlecode.kanbanik.client.api.ServerCallCallback; import com.googlecode.kanbanik.client.api.ServerCaller; import ...
Java
package com.googlecode.kanbanik.client; import com.google.gwt.core.client.GWT; import com.google.gwt.resources.client.ClientBundle; import com.google.gwt.resources.client.ImageResource; public interface KanbanikResources extends ClientBundle { public static final KanbanikResources INSTANCE = GWT.create(KanbanikRe...
Java
package com.googlecode.kanbanik.shared; public class UserNotLoggedInException extends Exception { private static final long serialVersionUID = -2841690106329483654L; }
Java
package com.googlecode.kanbanik.server; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; import com.googlecode.kanbanik.migrate.MigrateDb; public class MigrateDbListener implements ServletContextListener { @Override public void contextDestroyed(ServletContextEvent arg0) { ...
Java
package com.googlecode.kanbanik.server; import javax.servlet.ServletContext; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; import com.googlecode.kanbanik.model.KanbanikConnectionManager; import com.googlecode.kanbanik.security.KanbanikRealm; import org.apache.shiro.SecurityUti...
Java
package com.googlecode.kanbanik.dto; public enum CommandNames { LOGIN("login"), LOGOUT("logout"), // user GET_ALL_USERS_COMMAND("getAllUsers"), GET_CURRENT_USER("getCurrentUser"), CREATE_USER("createUser"), EDIT_USER("editUser"), DELETE_USER("deleteUser"), // class of service ...
Java
package com.googlecode.kanbanik.dto; public class ErrorCodes { public static final int APP_ERROR_STATUS = 452; public static final int USER_NOT_LOGGED_IN_STATUS = 453; }
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
package com.google.code.geobeagle; import java.util.Hashtable; public class CacheTypeFactory { private final Hashtable<Integer, CacheType> mCacheTypes = new Hashtable<Integer, CacheType>(CacheType.values().length); public CacheTypeFactory() { for (CacheType cacheType : CacheType.val...
Java
package com.google.code.geobeagle.gpsstatuswidget; import com.google.code.geobeagle.LocationControlBuffered; import com.google.code.geobeagle.Time; import com.google.code.geobeagle.formatting.DistanceFormatter; import com.google.code.geobeagle.location.CombinedLocationManager; import android.content.Context; import ...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
package com.google.code.geobeagle; import android.app.Activity; import android.content.DialogInterface; import android.content.DialogInterface.OnClickListener; public class ErrorDisplayerDi { static public ErrorDisplayer createErrorDisplayer(Activity activity) { final OnClickListener mOnClickListener = n...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, softwar...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, softwar...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
package com.google.code.geobeagle.activity.cachelist.presenter; import com.google.code.geobeagle.formatting.DistanceFormatterImperial; import com.google.code.geobeagle.formatting.DistanceFormatterMetric; import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceMana...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java
/* ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** d...
Java