mirror of
https://github.com/theonedev/onedev.git
synced 2025-12-08 18:26:30 +00:00
8 lines
114 B
Java
8 lines
114 B
Java
package com.pmease.commons.editable;
|
|
|
|
public interface Validatable {
|
|
|
|
void validate(EditContext editContext);
|
|
|
|
}
|