update copyright
[fedora-idea.git] / xml / impl / src / com / intellij / ide / browsers / firefox / FirefoxProfile.java
blob133ee83cd943bf90a4f4f51d1696ed847a8d7fab
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.ide.browsers.firefox;
18 import java.io.File;
20 /**
21 * @author nik
23 public class FirefoxProfile {
24 private final String myName;
25 private final String myPath;
26 private final boolean myDefault;
27 private final boolean myRelative;
29 public FirefoxProfile(String name, String path, boolean aDefault, boolean relative) {
30 myName = name;
31 myPath = path;
32 myDefault = aDefault;
33 myRelative = relative;
36 public String getName() {
37 return myName;
40 public String getPath() {
41 return myPath;
44 public boolean isRelative() {
45 return myRelative;
48 public boolean isDefault() {
49 return myDefault;
52 public File getProfileDirectory(File profilesIniFile) {
53 return myRelative ? new File(profilesIniFile.getParentFile(), myPath) : new File(myPath);