/*
- * Copyright 2000-2015 JetBrains s.r.o.
+ * Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
return customLine(color, thickness, thickness, thickness, thickness);
}
+ public static Border customLine(Color color) {
+ return customLine(color, 1);
+ }
+
public static Border merge(@Nullable Border source, @NotNull Border extra, boolean extraIsOutside) {
if (source == null) return extra;
return new CompoundBorder(extraIsOutside ? extra : source, extraIsOutside? source : extra);