Skip to content

Commit

Permalink
updated license header
Browse files Browse the repository at this point in the history
  • Loading branch information
doneill committed Aug 8, 2015
1 parent db343e3 commit 44eed2e
Show file tree
Hide file tree
Showing 11 changed files with 132 additions and 90 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
/* Copyright 2013 ESRI
/* Copyright 2015 Esri
*
* All rights reserved under the copyright laws of the United States
* and applicable international laws, treaties, and conventions.
* 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
*
* You may freely redistribute and use this sample code, with or
* without modification, provided you include the original copyright
* notice and use restrictions.
* http://www.apache.org/licenses/LICENSE-2.0
*
* See the Sample code usage restrictions document for further information.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
/* Copyright 2014 ESRI
/* Copyright 2015 Esri
*
* All rights reserved under the copyright laws of the United States
* and applicable international laws, treaties, and conventions.
* 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
*
* You may freely redistribute and use this sample code, with or
* without modification, provided you include the original copyright
* notice and use restrictions.
* http://www.apache.org/licenses/LICENSE-2.0
*
* See the Sample code usage restrictions document for further information.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

package com.esri.arcgis.android.samples.identifytask;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Context;
Expand Down Expand Up @@ -44,6 +43,10 @@
import com.esri.core.tasks.identify.IdentifyResult;
import com.esri.core.tasks.identify.IdentifyTask;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

/**
* This sample allows the user to identify data based on single tap and view the
* results in a callout window which has a spinner in its layout. Also the user
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
/* Copyright 2014 ESRI
/* Copyright 2015 Esri
*
* All rights reserved under the copyright laws of the United States
* and applicable international laws, treaties, and conventions.
* 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
*
* You may freely redistribute and use this sample code, with or
* without modification, provided you include the original copyright
* notice and use restrictions.
* http://www.apache.org/licenses/LICENSE-2.0
*
* See the Sample code usage restrictions document for further information.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
/* Copyright 2012 ESRI
/* Copyright 2015 Esri
*
* All rights reserved under the copyright laws of the United States
* and applicable international laws, treaties, and conventions.
* 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
*
* You may freely redistribute and use this sample code, with or
* without modification, provided you include the original copyright
* notice and use restrictions.
* http://www.apache.org/licenses/LICENSE-2.0
*
* See the Sample code usage restrictions document for further information.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
/* Copyright 2014 ESRI
/* Copyright 2015 Esri
*
* All rights reserved under the copyright laws of the United States
* and applicable international laws, treaties, and conventions.
* 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
*
* You may freely redistribute and use this sample code, with or
* without modification, provided you include the original copyright
* notice and use restrictions.
* http://www.apache.org/licenses/LICENSE-2.0
*
* See the Sample code usage restrictions document for further information.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
/* Portions of this code is based on code from
* https://github.com/mburman/Android-File-Explore and contributions from
/*
* Portions of this code is based on code from
* https://github.com/mburman/Android-File-Explore and contributions from
* Sugan Krishnan (https://github.com/rgksugan)
* under Apache2 license > http://www.apache.org/licenses/LICENSE-2.0
* Modifications have made to use fragment instead of activity
* and added more features to the file browser.
* under Apache2 license. Modifications have made to use fragment
* instead of activity and added more features to the file browser.
*
* 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
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

package com.arcgis.android.samples.localdata.localrasterdata;

import java.io.File;
import java.io.FilenameFilter;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;

import android.graphics.Color;
import android.os.Bundle;
import android.os.Environment;
Expand All @@ -34,6 +40,13 @@
import android.widget.TextView;
import android.widget.Toast;

import java.io.File;
import java.io.FilenameFilter;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;

public class FileBrowserFragment extends Fragment {

// Stores names of traversed directories
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
/* Copyright 2014 ESRI
/* Copyright 2015 Esri
*
* All rights reserved under the copyright laws of the United States
* and applicable international laws, treaties, and conventions.
* 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
*
* You may freely redistribute and use this sample code, with or
* without modification, provided you include the original copyright
* notice and use restrictions.
* http://www.apache.org/licenses/LICENSE-2.0
*
* See the Sample code usage restrictions document for further information.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
/* Copyright 2014 ESRI
/* Copyright 2015 Esri
*
* All rights reserved under the copyright laws of the United States
* and applicable international laws, treaties, and conventions.
* 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
*
* You may freely redistribute and use this sample code, with or
* without modification, provided you include the original copyright
* notice and use restrictions.
* http://www.apache.org/licenses/LICENSE-2.0
*
* See the Sample code usage restrictions document for further information.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

package com.arcgis.android.samples.localdata.localrasterdata;

import java.io.File;
import java.io.FileNotFoundException;

import android.os.Bundle;
import android.os.Environment;
import android.support.v4.app.FragmentActivity;
Expand All @@ -41,6 +41,9 @@
import com.esri.core.renderer.StretchParameters.StdDevStretchParameters;
import com.esri.core.renderer.StretchRenderer;

import java.io.File;
import java.io.FileNotFoundException;

public class MainActivity extends FragmentActivity implements
OnFileAndFolderFinishListener, OnDialogDismissListener {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
/* Copyright 2014 ESRI
/* Copyright 2015 Esri
*
* All rights reserved under the copyright laws of the United States
* and applicable international laws, treaties, and conventions.
* 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
*
* You may freely redistribute and use this sample code, with or
* without modification, provided you include the original copyright
* notice and use restrictions.
* http://www.apache.org/licenses/LICENSE-2.0
*
* See the Sample code usage restrictions document for further information.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
/* Copyright 2014 ESRI
/* Copyright 2015 Esri
*
* All rights reserved under the copyright laws of the United States
* and applicable international laws, treaties, and conventions.
* 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
*
* You may freely redistribute and use this sample code, with or
* without modification, provided you include the original copyright
* notice and use restrictions.
* http://www.apache.org/licenses/LICENSE-2.0
*
* See the Sample code usage restrictions document for further information.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

package com.arcgis.android.samples.localdata.localrasterdata;

public enum RendererType {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
/* Copyright 2014 ESRI
/* Copyright 2015 Esri
*
* All rights reserved under the copyright laws of the United States
* and applicable international laws, treaties, and conventions.
* 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
*
* You may freely redistribute and use this sample code, with or
* without modification, provided you include the original copyright
* notice and use restrictions.
* http://www.apache.org/licenses/LICENSE-2.0
*
* See the Sample code usage restrictions document for further information.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

Expand Down

0 comments on commit 44eed2e

Please sign in to comment.